41 lines
1.5 KiB
XML
41 lines
1.5 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 />
|
|
<RunPostBuildEvent>Always</RunPostBuildEvent>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="SlimDX">
|
|
<HintPath>D:\Program Files\My Nes 7.7.7273\SlimDX.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Data.SQLite">
|
|
<HintPath>D:\Program Files\My Nes 7.7.7273\System.Data.SQLite.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System.Xml" />
|
|
<Reference Include="SevenZipSharp">
|
|
<HintPath>D:\Program Files\My Nes 7.7.7273\SevenZipSharp.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="SDL2-CS">
|
|
<HintPath>D:\Program Files\My Nes 7.7.7273\SDL2-CS.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="xcopy "$(ProjectDir)Dependency" "$(TargetDir)" /s /e /y" />
|
|
</Target>
|
|
</Project> |