40 lines
1.2 KiB
XML
40 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
<PropertyGroup>
|
|
<AssemblyName>MyNes</AssemblyName>
|
|
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
|
|
<OutputType>WinExe</OutputType>
|
|
<UseWindowsForms>True</UseWindowsForms>
|
|
<TargetFramework>net40</TargetFramework>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<LangVersion>11.0</LangVersion>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<ApplicationIcon>app.ico</ApplicationIcon>
|
|
<RootNamespace />
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Data.SQLite" Version="1.0.118" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="SDL2-CS">
|
|
<HintPath>..\Lib\SDL2-CS.dll</HintPath>
|
|
<Private>True</Private>
|
|
</Reference>
|
|
<Reference Include="SevenZipSharp">
|
|
<HintPath>..\Lib\SevenZipSharp.dll</HintPath>
|
|
<Private>True</Private>
|
|
</Reference>
|
|
<Reference Include="SlimDX">
|
|
<HintPath>..\Lib\SlimDX.dll</HintPath>
|
|
<Private>True</Private>
|
|
</Reference>
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
</Project> |