-
-
Notifications
You must be signed in to change notification settings - Fork 281
/
Copy pathBepuPhysics.csproj
104 lines (89 loc) · 4.1 KB
/
BepuPhysics.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>2.0.0-alpha</Version>
<Company>Bepu Entertainment LLC</Company>
<Authors>Ross Nordby</Authors>
<Description>Early version of BEPUphysics v2.</Description>
<Copyright>© Bepu Entertainment LLC</Copyright>
<PackageProjectUrl>https://github.com/bepu/bepuphysics2</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/bepu/bepuphysics2/blob/master/LICENSE.md</PackageLicenseUrl>
<RepositoryUrl>https://github.com/bepu/bepuphysics2</RepositoryUrl>
<PackageIconUrl>https://raw.githubusercontent.com/bepu/bepuphysics1/master/Documentation/images/readme/bepuphysicslogo256.png</PackageIconUrl>
<Configurations>Debug;Release;ReleaseStrip</Configurations>
<LangVersion>7.2</LangVersion>
<PackageTags>physics;3d;rigid body;real time;simulation</PackageTags>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Condition="'$(Configuration)'=='ReleaseStrip'" Command="dotnet "$(ProjectDir)..\Dependencies\ilopt\ilopt.dll" "$(TargetPath)"" />
</Target>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Optimize>true</Optimize>
<DefineConstants>TRACE;RELEASE;PROFILE;NETSTANDARD2_0</DefineConstants>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStrip|AnyCPU'">
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Optimize>true</Optimize>
<DefineConstants>TRACE;RELEASE;PROFILE;NETSTANDARD2_0</DefineConstants>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Optimize>True</Optimize>
<DefineConstants>TRACE;RELEASE;PROFILE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStrip|x86'">
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Optimize>True</Optimize>
<DefineConstants>TRACE;RELEASE;PROFILE</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Optimize>True</Optimize>
<DefineConstants>TRACE;RELEASE;PROFILE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStrip|x64'">
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Optimize>True</Optimize>
<DefineConstants>TRACE;RELEASE;PROFILE</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>TRACE;DEBUG;CHECKMATH;PROFILE</DefineConstants>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>TRACE;DEBUG;CHECKMATH;PROFILE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>TRACE;DEBUG;CHECKMATH;PROFILE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\BepuUtilities\BepuUtilities.csproj" />
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
<ItemGroup>
<Compile Update="Constraints\Contact\ContactNonconvexTypes.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>ContactNonconvexTypes.tt</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Constraints\Contact\ContactNonconvexTypes.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>ContactNonconvexTypes.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>