123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <?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>{D6E4E5BC-8998-4718-8E84-80901E6739CC}</ProjectGuid>
- <OutputType>Library</OutputType>
- <RootNamespace>FarseerPhysicsEngine</RootNamespace>
- <AssemblyName>FarseerPhysicsEngine</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>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>none</DebugType>
- <Optimize>True</Optimize>
- <OutputPath>bin\Release</OutputPath>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <ConsolePause>False</ConsolePause>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <ItemGroup>
- <Folder Include="Collision\" />
- <Folder Include="Common\" />
- <Folder Include="Controllers\" />
- <Folder Include="Dynamics\" />
- <Folder Include="Factories\" />
- <Folder Include="Properties\" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Collision\Collision.cs" />
- <Compile Include="Collision\Distance.cs" />
- <Compile Include="Collision\DynamicTree.cs" />
- <Compile Include="Collision\DynamicTreeBroadPhase.cs" />
- <Compile Include="Collision\IBroadPhase.cs" />
- <Compile Include="Collision\QuadTree.cs" />
- <Compile Include="Collision\QuadTreeBroadPhase.cs" />
- <Compile Include="Collision\TimeOfImpact.cs" />
- <Compile Include="Collision\Shapes\CircleShape.cs" />
- <Compile Include="Collision\Shapes\EdgeShape.cs" />
- <Compile Include="Collision\Shapes\LoopShape.cs" />
- <Compile Include="Collision\Shapes\PolygonShape.cs" />
- <Compile Include="Collision\Shapes\Shape.cs" />
- <Compile Include="Common\FixedArray.cs" />
- <Compile Include="Common\HashSet.cs" />
- <Compile Include="Common\LineTools.cs" />
- <Compile Include="Common\Math.cs" />
- <Compile Include="Common\Path.cs" />
- <Compile Include="Common\PathManager.cs" />
- <Compile Include="Common\PolygonTools.cs" />
- <Compile Include="Common\Serialization.cs" />
- <Compile Include="Common\Vertices.cs" />
- <Compile Include="Common\ConvexHull\ChainHull.cs" />
- <Compile Include="Common\ConvexHull\GiftWrap.cs" />
- <Compile Include="Common\ConvexHull\Melkman.cs" />
- <Compile Include="Common\Decomposition\BayazitDecomposer.cs" />
- <Compile Include="Common\Decomposition\CDTDecomposer.cs" />
- <Compile Include="Common\Decomposition\EarclipDecomposer.cs" />
- <Compile Include="Common\Decomposition\FlipcodeDecomposer.cs" />
- <Compile Include="Common\Decomposition\SeidelDecomposer.cs" />
- <Compile Include="Common\Decomposition\CDT\ITriangulatable.cs" />
- <Compile Include="Common\Decomposition\CDT\Orientation.cs" />
- <Compile Include="Common\Decomposition\CDT\TriangulationConstraint.cs" />
- <Compile Include="Common\Decomposition\CDT\TriangulationContext.cs" />
- <Compile Include="Common\Decomposition\CDT\TriangulationMode.cs" />
- <Compile Include="Common\Decomposition\CDT\TriangulationPoint.cs" />
- <Compile Include="Common\Decomposition\CDT\TriangulationUtil.cs" />
- <Compile Include="Common\Decomposition\CDT\Delaunay\DelaunayTriangle.cs" />
- <Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\AdvancingFront.cs" />
- <Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\AdvancingFrontNode.cs" />
- <Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweep.cs" />
- <Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepConstraint.cs" />
- <Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepContext.cs" />
- <Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepPointComparator.cs" />
- <Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\PointOnEdgeException.cs" />
- <Compile Include="Common\Decomposition\CDT\Polygon\Polygon.cs" />
- <Compile Include="Common\Decomposition\CDT\Polygon\PolygonPoint.cs" />
- <Compile Include="Common\Decomposition\CDT\Polygon\PolygonSet.cs" />
- <Compile Include="Common\Decomposition\CDT\Sets\ConstrainedPointSet.cs" />
- <Compile Include="Common\Decomposition\CDT\Sets\PointSet.cs" />
- <Compile Include="Common\Decomposition\CDT\Util\FixedArray3.cs" />
- <Compile Include="Common\Decomposition\CDT\Util\FixedBitArray3.cs" />
- <Compile Include="Common\Decomposition\CDT\Util\PointGenerator.cs" />
- <Compile Include="Common\Decomposition\CDT\Util\PolygonGenerator.cs" />
- <Compile Include="Common\PhysicsLogic\Explosion.cs" />
- <Compile Include="Common\PhysicsLogic\PhysicsLogic.cs" />
- <Compile Include="Common\PolygonManipulation\CuttingTools.cs" />
- <Compile Include="Common\PolygonManipulation\SimplifyTools.cs" />
- <Compile Include="Common\PolygonManipulation\YuPengClipper.cs" />
- <Compile Include="Common\TextureTools\MSTerrain.cs" />
- <Compile Include="Common\TextureTools\MarchingSquares.cs" />
- <Compile Include="Common\TextureTools\TextureConverter.cs" />
- <Compile Include="Controllers\AbstractForceController.cs" />
- <Compile Include="Controllers\BuoyancyController.cs" />
- <Compile Include="Controllers\Controller.cs" />
- <Compile Include="Controllers\GravityController.cs" />
- <Compile Include="Controllers\SimpleWindForce.cs" />
- <Compile Include="Controllers\VelocityLimitController.cs" />
- <Compile Include="Dynamics\Body.cs" />
- <Compile Include="Dynamics\BreakableBody.cs" />
- <Compile Include="Dynamics\ContactManager.cs" />
- <Compile Include="Dynamics\Fixture.cs" />
- <Compile Include="Dynamics\Island.cs" />
- <Compile Include="Dynamics\TimeStep.cs" />
- <Compile Include="Dynamics\World.cs" />
- <Compile Include="Dynamics\WorldCallbacks.cs" />
- <Compile Include="Dynamics\Contacts\Contact.cs" />
- <Compile Include="Dynamics\Contacts\ContactSolver.cs" />
- <Compile Include="Dynamics\Joints\AngleJoint.cs" />
- <Compile Include="Dynamics\Joints\DistanceJoint.cs" />
- <Compile Include="Dynamics\Joints\FixedAngleJoint.cs" />
- <Compile Include="Dynamics\Joints\FixedDistanceJoint.cs" />
- <Compile Include="Dynamics\Joints\FixedFrictionJoint.cs" />
- <Compile Include="Dynamics\Joints\FixedLineJoint.cs" />
- <Compile Include="Dynamics\Joints\FixedMouseJoint.cs" />
- <Compile Include="Dynamics\Joints\FixedPrismaticJoint.cs" />
- <Compile Include="Dynamics\Joints\FixedRevoluteJoint.cs" />
- <Compile Include="Dynamics\Joints\FrictionJoint.cs" />
- <Compile Include="Dynamics\Joints\GearJoint.cs" />
- <Compile Include="Dynamics\Joints\Joint.cs" />
- <Compile Include="Dynamics\Joints\LineJoint.cs" />
- <Compile Include="Dynamics\Joints\PrismaticJoint.cs" />
- <Compile Include="Dynamics\Joints\PulleyJoint.cs" />
- <Compile Include="Dynamics\Joints\RevoluteJoint.cs" />
- <Compile Include="Dynamics\Joints\RopeJoint.cs" />
- <Compile Include="Dynamics\Joints\SliderJoint.cs" />
- <Compile Include="Dynamics\Joints\WeldJoint.cs" />
- <Compile Include="Factories\BodyFactory.cs" />
- <Compile Include="Factories\FixtureFactory.cs" />
- <Compile Include="Factories\JointFactory.cs" />
- <Compile Include="Factories\LinkFactory.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="DebugView.cs" />
- <Compile Include="Settings.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
- <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
- <Name>MonoGame.Framework.MacOS</Name>
- </ProjectReference>
- <ProjectReference Include="..\..\ThirdParty\Lidgren.Network\Lidgren.Network.MacOS.csproj">
- <Project>{AE483C29-042E-4226-BA52-D247CE7676DA}</Project>
- <Name>Lidgren.Network.MacOS</Name>
- </ProjectReference>
- </ItemGroup>
- </Project>
|