-
Notifications
You must be signed in to change notification settings - Fork 0
/
MonoGame.Tests.MacOS.csproj
112 lines (112 loc) · 4.73 KB
/
MonoGame.Tests.MacOS.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{A8199859-43CC-42CC-B348-96E2D5B63DFD}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>MonoGame.Tests</RootNamespace>
<AssemblyName>MonoGame.Tests.MacOS</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Drawing" />
<Reference Include="MonoMac" />
<Reference Include="Moq">
<HintPath>Libs\Moq.dll</HintPath>
</Reference>
<Reference Include="NDesk.Options">
<HintPath>Libs\NDesk.Options.dll</HintPath>
</Reference>
<Reference Include="nunit.core">
<HintPath>Libs\nunit.core.dll</HintPath>
</Reference>
<Reference Include="nunit.core.interfaces">
<HintPath>Libs\nunit.core.interfaces.dll</HintPath>
</Reference>
<Reference Include="nunit.framework">
<HintPath>Libs\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="nunit.util">
<HintPath>Libs\nunit.util.dll</HintPath>
</Reference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
<ItemGroup>
<Compile Include="GameTest.cs" />
<Compile Include="GameTest+Properties.cs" />
<Compile Include="MacOS\Program.cs" />
<Compile Include="Interface\CommandLineInterface.cs" />
<Compile Include="Components\ClearComponent.cs" />
<Compile Include="Components\Draw2DComponent.cs" />
<Compile Include="Components\DrawFrameNumberComponent.cs" />
<Compile Include="Components\FrameCompareComponent.cs" />
<Compile Include="Components\ImplicitDrawOrderComponent.cs" />
<Compile Include="Components\PixelDeltaFrameComparer.cs" />
<Compile Include="Visual\BasicVisualTest.cs" />
<Compile Include="Visual\IntermediateVisualTest.cs" />
<Compile Include="Visual\VisualTestGame.cs" />
<Compile Include="FrameInfo.cs" />
<Compile Include="GameTest+Methods.cs" />
<Compile Include="TestGameBase.cs" />
<Compile Include="Utility.cs" />
<Compile Include="PixelArgb.cs" />
<Compile Include="Constants.cs" />
<Compile Include="Visual\VisualTestFixtureBase.cs" />
<Compile Include="Components\UpdateGuard.cs" />
<Compile Include="Components\VisualTestDrawableGameComponent.cs" />
<Compile Include="Components\VisualTestGameComponent.cs" />
<Compile Include="Visual\FontVisualTest.cs" />
<Compile Include="Components\SpriteFontComponent.cs" />
<Compile Include="Components\SpriteShaderComponent.cs" />
<Compile Include="Visual\ShaderVisualTest.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ThirdParty\Lidgren.Network\Lidgren.Network.MacOS.csproj">
<Project>{AE483C29-042E-4226-BA52-D247CE7676DA}</Project>
<Name>Lidgren.Network.MacOS</Name>
</ProjectReference>
<ProjectReference Include="..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
<Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
<Name>MonoGame.Framework.MacOS</Name>
</ProjectReference>
<ProjectReference Include="Assets\MonoGame.Tests.Assets.csproj">
<Project>{F759DE08-E160-4BB4-9A09-404D5694A4EC}</Project>
<Name>MonoGame.Tests.Assets</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="MacOS\" />
</ItemGroup>
<ItemGroup>
<Content Include="Resources\tests.xsl">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>