2
0

FarseerPhysicsEngine.csproj 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{D6E4E5BC-8998-4718-8E84-80901E6739CC}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <RootNamespace>FarseerPhysicsEngine</RootNamespace>
  11. <AssemblyName>FarseerPhysicsEngine</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugSymbols>True</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>False</Optimize>
  17. <OutputPath>bin\Debug</OutputPath>
  18. <DefineConstants>DEBUG;</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <ConsolePause>False</ConsolePause>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  24. <DebugType>none</DebugType>
  25. <Optimize>True</Optimize>
  26. <OutputPath>bin\Release</OutputPath>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. <ConsolePause>False</ConsolePause>
  30. </PropertyGroup>
  31. <ItemGroup>
  32. <Reference Include="System" />
  33. <Reference Include="System.Xml" />
  34. </ItemGroup>
  35. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  36. <ItemGroup>
  37. <Folder Include="Collision\" />
  38. <Folder Include="Common\" />
  39. <Folder Include="Controllers\" />
  40. <Folder Include="Dynamics\" />
  41. <Folder Include="Factories\" />
  42. <Folder Include="Properties\" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <Compile Include="Collision\Collision.cs" />
  46. <Compile Include="Collision\Distance.cs" />
  47. <Compile Include="Collision\DynamicTree.cs" />
  48. <Compile Include="Collision\DynamicTreeBroadPhase.cs" />
  49. <Compile Include="Collision\IBroadPhase.cs" />
  50. <Compile Include="Collision\QuadTree.cs" />
  51. <Compile Include="Collision\QuadTreeBroadPhase.cs" />
  52. <Compile Include="Collision\TimeOfImpact.cs" />
  53. <Compile Include="Collision\Shapes\CircleShape.cs" />
  54. <Compile Include="Collision\Shapes\EdgeShape.cs" />
  55. <Compile Include="Collision\Shapes\LoopShape.cs" />
  56. <Compile Include="Collision\Shapes\PolygonShape.cs" />
  57. <Compile Include="Collision\Shapes\Shape.cs" />
  58. <Compile Include="Common\FixedArray.cs" />
  59. <Compile Include="Common\HashSet.cs" />
  60. <Compile Include="Common\LineTools.cs" />
  61. <Compile Include="Common\Math.cs" />
  62. <Compile Include="Common\Path.cs" />
  63. <Compile Include="Common\PathManager.cs" />
  64. <Compile Include="Common\PolygonTools.cs" />
  65. <Compile Include="Common\Serialization.cs" />
  66. <Compile Include="Common\Vertices.cs" />
  67. <Compile Include="Common\ConvexHull\ChainHull.cs" />
  68. <Compile Include="Common\ConvexHull\GiftWrap.cs" />
  69. <Compile Include="Common\ConvexHull\Melkman.cs" />
  70. <Compile Include="Common\Decomposition\BayazitDecomposer.cs" />
  71. <Compile Include="Common\Decomposition\CDTDecomposer.cs" />
  72. <Compile Include="Common\Decomposition\EarclipDecomposer.cs" />
  73. <Compile Include="Common\Decomposition\FlipcodeDecomposer.cs" />
  74. <Compile Include="Common\Decomposition\SeidelDecomposer.cs" />
  75. <Compile Include="Common\Decomposition\CDT\ITriangulatable.cs" />
  76. <Compile Include="Common\Decomposition\CDT\Orientation.cs" />
  77. <Compile Include="Common\Decomposition\CDT\TriangulationConstraint.cs" />
  78. <Compile Include="Common\Decomposition\CDT\TriangulationContext.cs" />
  79. <Compile Include="Common\Decomposition\CDT\TriangulationMode.cs" />
  80. <Compile Include="Common\Decomposition\CDT\TriangulationPoint.cs" />
  81. <Compile Include="Common\Decomposition\CDT\TriangulationUtil.cs" />
  82. <Compile Include="Common\Decomposition\CDT\Delaunay\DelaunayTriangle.cs" />
  83. <Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\AdvancingFront.cs" />
  84. <Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\AdvancingFrontNode.cs" />
  85. <Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweep.cs" />
  86. <Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepConstraint.cs" />
  87. <Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepContext.cs" />
  88. <Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepPointComparator.cs" />
  89. <Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\PointOnEdgeException.cs" />
  90. <Compile Include="Common\Decomposition\CDT\Polygon\Polygon.cs" />
  91. <Compile Include="Common\Decomposition\CDT\Polygon\PolygonPoint.cs" />
  92. <Compile Include="Common\Decomposition\CDT\Polygon\PolygonSet.cs" />
  93. <Compile Include="Common\Decomposition\CDT\Sets\ConstrainedPointSet.cs" />
  94. <Compile Include="Common\Decomposition\CDT\Sets\PointSet.cs" />
  95. <Compile Include="Common\Decomposition\CDT\Util\FixedArray3.cs" />
  96. <Compile Include="Common\Decomposition\CDT\Util\FixedBitArray3.cs" />
  97. <Compile Include="Common\Decomposition\CDT\Util\PointGenerator.cs" />
  98. <Compile Include="Common\Decomposition\CDT\Util\PolygonGenerator.cs" />
  99. <Compile Include="Common\PhysicsLogic\Explosion.cs" />
  100. <Compile Include="Common\PhysicsLogic\PhysicsLogic.cs" />
  101. <Compile Include="Common\PolygonManipulation\CuttingTools.cs" />
  102. <Compile Include="Common\PolygonManipulation\SimplifyTools.cs" />
  103. <Compile Include="Common\PolygonManipulation\YuPengClipper.cs" />
  104. <Compile Include="Common\TextureTools\MSTerrain.cs" />
  105. <Compile Include="Common\TextureTools\MarchingSquares.cs" />
  106. <Compile Include="Common\TextureTools\TextureConverter.cs" />
  107. <Compile Include="Controllers\AbstractForceController.cs" />
  108. <Compile Include="Controllers\BuoyancyController.cs" />
  109. <Compile Include="Controllers\Controller.cs" />
  110. <Compile Include="Controllers\GravityController.cs" />
  111. <Compile Include="Controllers\SimpleWindForce.cs" />
  112. <Compile Include="Controllers\VelocityLimitController.cs" />
  113. <Compile Include="Dynamics\Body.cs" />
  114. <Compile Include="Dynamics\BreakableBody.cs" />
  115. <Compile Include="Dynamics\ContactManager.cs" />
  116. <Compile Include="Dynamics\Fixture.cs" />
  117. <Compile Include="Dynamics\Island.cs" />
  118. <Compile Include="Dynamics\TimeStep.cs" />
  119. <Compile Include="Dynamics\World.cs" />
  120. <Compile Include="Dynamics\WorldCallbacks.cs" />
  121. <Compile Include="Dynamics\Contacts\Contact.cs" />
  122. <Compile Include="Dynamics\Contacts\ContactSolver.cs" />
  123. <Compile Include="Dynamics\Joints\AngleJoint.cs" />
  124. <Compile Include="Dynamics\Joints\DistanceJoint.cs" />
  125. <Compile Include="Dynamics\Joints\FixedAngleJoint.cs" />
  126. <Compile Include="Dynamics\Joints\FixedDistanceJoint.cs" />
  127. <Compile Include="Dynamics\Joints\FixedFrictionJoint.cs" />
  128. <Compile Include="Dynamics\Joints\FixedLineJoint.cs" />
  129. <Compile Include="Dynamics\Joints\FixedMouseJoint.cs" />
  130. <Compile Include="Dynamics\Joints\FixedPrismaticJoint.cs" />
  131. <Compile Include="Dynamics\Joints\FixedRevoluteJoint.cs" />
  132. <Compile Include="Dynamics\Joints\FrictionJoint.cs" />
  133. <Compile Include="Dynamics\Joints\GearJoint.cs" />
  134. <Compile Include="Dynamics\Joints\Joint.cs" />
  135. <Compile Include="Dynamics\Joints\LineJoint.cs" />
  136. <Compile Include="Dynamics\Joints\PrismaticJoint.cs" />
  137. <Compile Include="Dynamics\Joints\PulleyJoint.cs" />
  138. <Compile Include="Dynamics\Joints\RevoluteJoint.cs" />
  139. <Compile Include="Dynamics\Joints\RopeJoint.cs" />
  140. <Compile Include="Dynamics\Joints\SliderJoint.cs" />
  141. <Compile Include="Dynamics\Joints\WeldJoint.cs" />
  142. <Compile Include="Factories\BodyFactory.cs" />
  143. <Compile Include="Factories\FixtureFactory.cs" />
  144. <Compile Include="Factories\JointFactory.cs" />
  145. <Compile Include="Factories\LinkFactory.cs" />
  146. <Compile Include="Properties\AssemblyInfo.cs" />
  147. <Compile Include="DebugView.cs" />
  148. <Compile Include="Settings.cs" />
  149. </ItemGroup>
  150. <ItemGroup>
  151. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
  152. <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
  153. <Name>MonoGame.Framework.MacOS</Name>
  154. </ProjectReference>
  155. <ProjectReference Include="..\..\ThirdParty\Lidgren.Network\Lidgren.Network.MacOS.csproj">
  156. <Project>{AE483C29-042E-4226-BA52-D247CE7676DA}</Project>
  157. <Name>Lidgren.Network.MacOS</Name>
  158. </ProjectReference>
  159. </ItemGroup>
  160. </Project>