forked from prime31/Nez
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNez.FNA.FarseerPhysics.csproj
40 lines (34 loc) · 1.41 KB
/
Nez.FNA.FarseerPhysics.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>
<PropertyGroup>
<BaseIntermediateOutputPath>obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
</PropertyGroup>
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.props" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<OutputType>Library</OutputType>
<RootNamespace>Nez.Farseer</RootNamespace>
<AssemblyName>Nez.FarseerPhysics</AssemblyName>
<TargetFramework>net471</TargetFramework>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>bin\$(Configuration)\FNA</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DefineConstants>TRACE;DEBUG;FNA</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DefineConstants>FNA</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\FNA\FNA.csproj">
</ProjectReference>
<ProjectReference Include="..\Nez.Portable\Nez.FNA.csproj">
</ProjectReference>
</ItemGroup>
<PropertyGroup>
<DefaultItemExcludes>$(DefaultItemExcludes);Properties\*.*</DefaultItemExcludes>
</PropertyGroup>
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" />
</Project>