forked from MonoGame/MonoGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MonoGame.Tests.WindowsDX.csproj
40 lines (33 loc) · 1.31 KB
/
MonoGame.Tests.WindowsDX.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<RollForward>Major</RollForward>
<IsPackable>false</IsPackable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateProgramFile>false</GenerateProgramFile>
<DefineConstants>WINDOWS;DIRECTX</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NUnitLite" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MonoGame.Framework\MonoGame.Framework.WindowsDX.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Remove="bin\**\*" />
<Compile Remove="obj\**\*" />
<Compile Remove="Properties/**/*" />
<Compile Remove="Interactive/**/*" />
<Compile Remove="Runner/iOS/**/*" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets/**/*" CopyToOutputDirectory="PreserveNewest" />
<Content Include="..\MonoGame.Framework\Platform\Graphics\Effect\Resources\*.fx*">
<Link>Assets\Effects\Stock\%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>