Updated to MonoGame 3.6 + Directory refactor

- Barotrauma's projects are in the Barotrauma directory
- All libraries are in the Libraries directory
- MonoGame is now managed by NuGet, rather than referenced from the installed files (TODO: consider using PCL for easier cross-platform development?)
- NuGet libraries are not included in the repo, as getting the latest versions automatically should be preferred
- Removed Content/effects.mgfx as it didn't seem to be used anywhere
- Removed some references to Subsurface directory
- Renamed Launcher2 to Launcher
This commit is contained in:
juanjp600
2017-06-27 09:52:57 -03:00
parent 330b24bcf6
commit 4d225c65f2
1301 changed files with 169 additions and 77952 deletions
@@ -0,0 +1,533 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{786DC838-D746-4107-93FF-19A902A78CFC}</ProjectGuid>
<ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>FarseerPhysics</RootNamespace>
<AssemblyName>FarseerPhysics Silverlight</AssemblyName>
<TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
<TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
<SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
<SilverlightApplication>false</SilverlightApplication>
<ValidateXaml>true</ValidateXaml>
<ThrowErrorsInValidation>true</ThrowErrorsInValidation>
<SccProjectName>
</SccProjectName>
<SccLocalPath>
</SccLocalPath>
<SccAuxPath>
</SccAuxPath>
<SccProvider>
</SccProvider>
<TargetFrameworkProfile />
</PropertyGroup>
<!-- This property group is only here to support building this project using the
MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs
to set the TargetFrameworkVersion to v3.5 -->
<PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'">
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Bin\Debug</OutputPath>
<DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>Bin\Debug\FarseerPhysics Silverlight.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
<LangVersion>default</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>Bin\Release</OutputPath>
<DefineConstants>TRACE;SILVERLIGHT</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>Bin\Release\FarseerPhysics Silverlight.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="system" />
<Reference Include="System.Core" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Serialization, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
</ItemGroup>
<ItemGroup>
<Compile Include="Collision\Collision.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Collision\Distance.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Collision\DynamicTree.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Collision\DynamicTreeBroadPhase.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Collision\IBroadPhase.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Collision\Shapes\ChainShape.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Collision\Shapes\CircleShape.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Collision\Shapes\EdgeShape.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Collision\Shapes\PolygonShape.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Collision\Shapes\Shape.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Collision\TimeOfImpact.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\ConvexHull\ChainHull.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\ConvexHull\GiftWrap.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\ConvexHull\Melkman.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Curve.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\CurveKey.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\CurveKeyCollection.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\BayazitDecomposer.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDTDecomposer.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Delaunay\DelaunayTriangle.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\AdvancingFront.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\AdvancingFrontNode.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweep.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepConstraint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepContext.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepPointComparator.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\PointOnEdgeException.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\ITriangulatable.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Orientation.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Polygon\Polygon.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Polygon\PolygonPoint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Polygon\PolygonSet.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Sets\ConstrainedPointSet.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Sets\PointSet.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\TriangulationConstraint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\TriangulationContext.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\TriangulationMode.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\TriangulationPoint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\TriangulationUtil.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Util\FixedArray3.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Util\FixedBitArray3.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Util\PointGenerator.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\CDT\Util\PolygonGenerator.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\EarclipDecomposer.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\FlipcodeDecomposer.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\SeidelDecomposer.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\Seidel\Edge.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\Seidel\MonotoneMountain.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\Seidel\Node.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\Seidel\Point.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\Seidel\QueryGraph.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\Seidel\Sink.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\Seidel\Trapezoid.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\Seidel\TrapezoidalMap.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\Seidel\Triangulator.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\Seidel\XNode.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\Seidel\YNode.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Decomposition\Triangulate.cs" />
<Compile Include="Common\FixedArray.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\HashSet.cs" />
<Compile Include="Common\LineTools.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Math.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\MathHelper.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Matrix.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Path.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\PathManager.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\PhysicsLogic\FilterData.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\PhysicsLogic\PhysicsLogic.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\PhysicsLogic\RealExplosion.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\PhysicsLogic\SimpleExplosion.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\PolygonManipulation\CuttingTools.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\PolygonManipulation\SimpleCombiner.cs" />
<Compile Include="Common\PolygonManipulation\SimplifyTools.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\PolygonManipulation\YuPengClipper.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\PolygonTools.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Serialization.cs" />
<Compile Include="Common\Stopwatch.cs" />
<Compile Include="Common\TextureTools\MarchingSquares.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\TextureTools\Terrain.cs" />
<Compile Include="Common\TextureTools\TextureConverter.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Vector2.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Vector3.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Common\Vertices.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Controllers\AbstractForceController.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Controllers\BuoyancyController.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Controllers\Controller.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Controllers\GravityController.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Controllers\SimpleWindForce.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Controllers\VelocityLimitController.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="ConvertUnits.cs" />
<Compile Include="DebugViewBase.cs" />
<Compile Include="Dynamics\Body.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\BreakableBody.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\ContactManager.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Contacts\Contact.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Contacts\ContactSolver.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Fixture.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Island.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Joints\AngleJoint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Joints\DistanceJoint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Joints\FixedMouseJoint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Joints\FrictionJoint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Joints\GearJoint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Joints\Joint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Joints\MotorJoint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Joints\PrismaticJoint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Joints\PulleyJoint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Joints\RevoluteJoint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Joints\RopeJoint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Joints\WeldJoint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\Joints\WheelJoint.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\TimeStep.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\World.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Dynamics\WorldCallbacks.cs" />
<Compile Include="Factories\BodyFactory.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Factories\FixtureFactory.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Factories\JointFactory.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Factories\LinkFactory.cs">
<SubType>
</SubType>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Settings.cs" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.CSharp.targets" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}">
<SilverlightProjectProperties />
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>