Files
Apr2020-Cpp2Il-Dump/AstarPathfindingProject/AstarPathfindingProject.csproj
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

313 lines
17 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{2D4E062A-048A-43C7-9D34-B845ECC95A93}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>AstarPathfindingProject</RootNamespace>
<AssemblyName>AstarPathfindingProject</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoStdLib>true</NoStdLib>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoStdLib>true</NoStdLib>
</PropertyGroup>
<ItemGroup />
<ItemGroup>
<AppDesigner Include="Properties\" />
</ItemGroup>
<ItemGroup>
<Compile Include="AstarPath.cs" />
<Compile Include="Cpp2IlInjected\AddressAttribute.cs" />
<Compile Include="Cpp2IlInjected\AnalysisFailedException.cs" />
<Compile Include="Cpp2IlInjected\AttributeAttribute.cs" />
<Compile Include="Cpp2IlInjected\FieldOffsetAttribute.cs" />
<Compile Include="Cpp2IlInjected\MetadataOffsetAttribute.cs" />
<Compile Include="Cpp2IlInjected\TokenAttribute.cs" />
<Compile Include="Pathfinding\ABPath.cs" />
<Compile Include="Pathfinding\ABPathEndingCondition.cs" />
<Compile Include="Pathfinding\AdvancedSmooth.cs" />
<Compile Include="Pathfinding\AIBase.cs" />
<Compile Include="Pathfinding\AIDestinationSetter.cs" />
<Compile Include="Pathfinding\AILerp.cs" />
<Compile Include="Pathfinding\AIPath.cs" />
<Compile Include="Pathfinding\AlternativePath.cs" />
<Compile Include="Pathfinding\AnimationLink.cs" />
<Compile Include="Pathfinding\AstarColor.cs" />
<Compile Include="Pathfinding\AstarData.cs" />
<Compile Include="Pathfinding\AstarDebugger.cs" />
<Compile Include="Pathfinding\AstarMath.cs" />
<Compile Include="Pathfinding\AstarProfiler.cs" />
<Compile Include="Pathfinding\AstarSplines.cs" />
<Compile Include="Pathfinding\AstarWorkItem.cs" />
<Compile Include="Pathfinding\BBTree.cs" />
<Compile Include="Pathfinding\BinaryHeap.cs" />
<Compile Include="Pathfinding\BlockManager.cs" />
<Compile Include="Pathfinding\CloseToDestinationMode.cs" />
<Compile Include="Pathfinding\ColliderType.cs" />
<Compile Include="Pathfinding\Connection.cs" />
<Compile Include="Pathfinding\ConstantPath.cs" />
<Compile Include="Pathfinding\DefaultITraversalProvider.cs" />
<Compile Include="Pathfinding\EndingConditionDistance.cs" />
<Compile Include="Pathfinding\EndingConditionProximity.cs" />
<Compile Include="Pathfinding\EnumFlagAttribute.cs" />
<Compile Include="Pathfinding\EuclideanEmbedding.cs" />
<Compile Include="Pathfinding\Examples\AnimationLinkTraverser.cs" />
<Compile Include="Pathfinding\Examples\TurnBasedAI.cs" />
<Compile Include="Pathfinding\FleePath.cs" />
<Compile Include="Pathfinding\FloodPath.cs" />
<Compile Include="Pathfinding\FloodPathConstraint.cs" />
<Compile Include="Pathfinding\FloodPathTracer.cs" />
<Compile Include="Pathfinding\Funnel.cs" />
<Compile Include="Pathfinding\FunnelModifier.cs" />
<Compile Include="Pathfinding\GraphCollision.cs" />
<Compile Include="Pathfinding\GraphDebugMode.cs" />
<Compile Include="Pathfinding\GraphEditorBase.cs" />
<Compile Include="Pathfinding\GraphHitInfo.cs" />
<Compile Include="Pathfinding\GraphMask.cs" />
<Compile Include="Pathfinding\GraphModifier.cs" />
<Compile Include="Pathfinding\GraphNode.cs" />
<Compile Include="Pathfinding\GraphUpdateObject.cs" />
<Compile Include="Pathfinding\GraphUpdateProcessor.cs" />
<Compile Include="Pathfinding\GraphUpdateScene.cs" />
<Compile Include="Pathfinding\GraphUpdateShape.cs" />
<Compile Include="Pathfinding\GraphUpdateThreading.cs" />
<Compile Include="Pathfinding\GraphUpdateUtilities.cs" />
<Compile Include="Pathfinding\GraphUtilities.cs" />
<Compile Include="Pathfinding\GridGraph.cs" />
<Compile Include="Pathfinding\GridNode.cs" />
<Compile Include="Pathfinding\GridNodeBase.cs" />
<Compile Include="Pathfinding\Heuristic.cs" />
<Compile Include="Pathfinding\HeuristicOptimizationMode.cs" />
<Compile Include="Pathfinding\HierarchicalGraph.cs" />
<Compile Include="Pathfinding\IAstarAI.cs" />
<Compile Include="Pathfinding\IGraphInternals.cs" />
<Compile Include="Pathfinding\INavmesh.cs" />
<Compile Include="Pathfinding\INavmeshHolder.cs" />
<Compile Include="Pathfinding\InspectorGridHexagonNodeSize.cs" />
<Compile Include="Pathfinding\InspectorGridMode.cs" />
<Compile Include="Pathfinding\Int2.cs" />
<Compile Include="Pathfinding\Int3.cs" />
<Compile Include="Pathfinding\IntRect.cs" />
<Compile Include="Pathfinding\IPathInternals.cs" />
<Compile Include="Pathfinding\IPathModifier.cs" />
<Compile Include="Pathfinding\IRaycastableGraph.cs" />
<Compile Include="Pathfinding\ITransformedGraph.cs" />
<Compile Include="Pathfinding\ITraversalProvider.cs" />
<Compile Include="Pathfinding\IUpdatableGraph.cs" />
<Compile Include="Pathfinding\IVersionedMonoBehaviourInternal.cs" />
<Compile Include="Pathfinding\IWorkItemContext.cs" />
<Compile Include="Pathfinding\LayerGridGraph.cs" />
<Compile Include="Pathfinding\LayerGridGraphUpdate.cs" />
<Compile Include="Pathfinding\LevelGridNode.cs" />
<Compile Include="Pathfinding\MeshNode.cs" />
<Compile Include="Pathfinding\MonoModifier.cs" />
<Compile Include="Pathfinding\MultiTargetPath.cs" />
<Compile Include="Pathfinding\NavGraph.cs" />
<Compile Include="Pathfinding\NavmeshAdd.cs" />
<Compile Include="Pathfinding\NavmeshBase.cs" />
<Compile Include="Pathfinding\NavmeshClipper.cs" />
<Compile Include="Pathfinding\NavmeshCut.cs" />
<Compile Include="Pathfinding\NavMeshGraph.cs" />
<Compile Include="Pathfinding\NavmeshTile.cs" />
<Compile Include="Pathfinding\NavmeshUpdates.cs" />
<Compile Include="Pathfinding\NNConstraint.cs" />
<Compile Include="Pathfinding\NNInfo.cs" />
<Compile Include="Pathfinding\NNInfoInternal.cs" />
<Compile Include="Pathfinding\NodeLink.cs" />
<Compile Include="Pathfinding\NodeLink2.cs" />
<Compile Include="Pathfinding\NodeLink3.cs" />
<Compile Include="Pathfinding\NodeLink3Node.cs" />
<Compile Include="Pathfinding\NumNeighbours.cs" />
<Compile Include="Pathfinding\ObjImporter.cs" />
<Compile Include="Pathfinding\OnGraphDelegate.cs" />
<Compile Include="Pathfinding\OnPathDelegate.cs" />
<Compile Include="Pathfinding\OnScanDelegate.cs" />
<Compile Include="Pathfinding\OnScanStatus.cs" />
<Compile Include="Pathfinding\OrientationMode.cs" />
<Compile Include="Pathfinding\Path.cs" />
<Compile Include="Pathfinding\PathCompleteState.cs" />
<Compile Include="Pathfinding\PathEndingCondition.cs" />
<Compile Include="Pathfinding\PathHandler.cs" />
<Compile Include="Pathfinding\PathLog.cs" />
<Compile Include="Pathfinding\PathModifier.cs" />
<Compile Include="Pathfinding\PathNNConstraint.cs" />
<Compile Include="Pathfinding\PathNode.cs" />
<Compile Include="Pathfinding\PathPool.cs" />
<Compile Include="Pathfinding\PathProcessor.cs" />
<Compile Include="Pathfinding\PathReturnQueue.cs" />
<Compile Include="Pathfinding\PathState.cs" />
<Compile Include="Pathfinding\PathUtilities.cs" />
<Compile Include="Pathfinding\Patrol.cs" />
<Compile Include="Pathfinding\PointGraph.cs" />
<Compile Include="Pathfinding\PointKDTree.cs" />
<Compile Include="Pathfinding\PointNode.cs" />
<Compile Include="Pathfinding\Polygon.cs" />
<Compile Include="Pathfinding\Profile.cs" />
<Compile Include="Pathfinding\Progress.cs" />
<Compile Include="Pathfinding\RadiusModifier.cs" />
<Compile Include="Pathfinding\RandomPath.cs" />
<Compile Include="Pathfinding\RaycastModifier.cs" />
<Compile Include="Pathfinding\RayDirection.cs" />
<Compile Include="Pathfinding\RecastBBTree.cs" />
<Compile Include="Pathfinding\RecastBBTreeBox.cs" />
<Compile Include="Pathfinding\RecastGraph.cs" />
<Compile Include="Pathfinding\RecastMeshObj.cs" />
<Compile Include="Pathfinding\Recast\RecastMeshGatherer.cs" />
<Compile Include="Pathfinding\RelevantGraphSurface.cs" />
<Compile Include="Pathfinding\RichAI.cs" />
<Compile Include="Pathfinding\RichFunnel.cs" />
<Compile Include="Pathfinding\RichPath.cs" />
<Compile Include="Pathfinding\RichPathPart.cs" />
<Compile Include="Pathfinding\RichSpecial.cs" />
<Compile Include="Pathfinding\RVO\IAgent.cs" />
<Compile Include="Pathfinding\RVO\Line.cs" />
<Compile Include="Pathfinding\RVO\MovementPlane.cs" />
<Compile Include="Pathfinding\RVO\ObstacleVertex.cs" />
<Compile Include="Pathfinding\RVO\RVOController.cs" />
<Compile Include="Pathfinding\RVO\RVOLayer.cs" />
<Compile Include="Pathfinding\RVO\RVONavmesh.cs" />
<Compile Include="Pathfinding\RVO\RVOObstacle.cs" />
<Compile Include="Pathfinding\RVO\RVOQuadtree.cs" />
<Compile Include="Pathfinding\RVO\RVOSimulator.cs" />
<Compile Include="Pathfinding\RVO\RVOSquareObstacle.cs" />
<Compile Include="Pathfinding\RVO\Sampled\Agent.cs" />
<Compile Include="Pathfinding\RVO\Simulator.cs" />
<Compile Include="Pathfinding\Seeker.cs" />
<Compile Include="Pathfinding\Serialization\AstarSerializer.cs" />
<Compile Include="Pathfinding\Serialization\GraphMeta.cs" />
<Compile Include="Pathfinding\Serialization\GraphSerializationContext.cs" />
<Compile Include="Pathfinding\Serialization\JsonMemberAttribute.cs" />
<Compile Include="Pathfinding\Serialization\JsonOptInAttribute.cs" />
<Compile Include="Pathfinding\Serialization\SerializeSettings.cs" />
<Compile Include="Pathfinding\Serialization\TinyJsonDeserializer.cs" />
<Compile Include="Pathfinding\Serialization\TinyJsonSerializer.cs" />
<Compile Include="Pathfinding\Side.cs" />
<Compile Include="Pathfinding\SimpleSmoothModifier.cs" />
<Compile Include="Pathfinding\SingleNodeBlocker.cs" />
<Compile Include="Pathfinding\StartEndModifier.cs" />
<Compile Include="Pathfinding\ThreadControlQueue.cs" />
<Compile Include="Pathfinding\ThreadCount.cs" />
<Compile Include="Pathfinding\TileHandlerHelper.cs" />
<Compile Include="Pathfinding\TriangleMeshNode.cs" />
<Compile Include="Pathfinding\UniqueComponentAttribute.cs" />
<Compile Include="Pathfinding\UnityReferenceHelper.cs" />
<Compile Include="Pathfinding\Util\ArrayPool.cs" />
<Compile Include="Pathfinding\Util\Checksum.cs" />
<Compile Include="Pathfinding\Util\Draw.cs" />
<Compile Include="Pathfinding\Util\GraphGizmoHelper.cs" />
<Compile Include="Pathfinding\Util\GraphTransform.cs" />
<Compile Include="Pathfinding\Util\GridLookup.cs" />
<Compile Include="Pathfinding\Util\Guid.cs" />
<Compile Include="Pathfinding\Util\IAstarPooledObject.cs" />
<Compile Include="Pathfinding\Util\IMovementPlane.cs" />
<Compile Include="Pathfinding\Util\ITransform.cs" />
<Compile Include="Pathfinding\Util\ListExtensions.cs" />
<Compile Include="Pathfinding\Util\ListPool.cs" />
<Compile Include="Pathfinding\Util\Memory.cs" />
<Compile Include="Pathfinding\Util\MovementUtilities.cs" />
<Compile Include="Pathfinding\Util\ObjectPool.cs" />
<Compile Include="Pathfinding\Util\ObjectPoolSimple.cs" />
<Compile Include="Pathfinding\Util\ParallelWorkQueue.cs" />
<Compile Include="Pathfinding\Util\PathInterpolator.cs" />
<Compile Include="Pathfinding\Util\PreserveAttribute.cs" />
<Compile Include="Pathfinding\Util\RetainedGizmos.cs" />
<Compile Include="Pathfinding\Util\StackPool.cs" />
<Compile Include="Pathfinding\Util\TileHandler.cs" />
<Compile Include="Pathfinding\VectorMath.cs" />
<Compile Include="Pathfinding\VersionedMonoBehaviour.cs" />
<Compile Include="Pathfinding\Voxels\CompactVoxelCell.cs" />
<Compile Include="Pathfinding\Voxels\CompactVoxelSpan.cs" />
<Compile Include="Pathfinding\Voxels\Int3PolygonClipper.cs" />
<Compile Include="Pathfinding\Voxels\LinkedVoxelSpan.cs" />
<Compile Include="Pathfinding\Voxels\RasterizationMesh.cs" />
<Compile Include="Pathfinding\Voxels\Utility.cs" />
<Compile Include="Pathfinding\Voxels\VoxelArea.cs" />
<Compile Include="Pathfinding\Voxels\VoxelCell.cs" />
<Compile Include="Pathfinding\Voxels\VoxelContour.cs" />
<Compile Include="Pathfinding\Voxels\VoxelContourSet.cs" />
<Compile Include="Pathfinding\Voxels\Voxelize.cs" />
<Compile Include="Pathfinding\Voxels\VoxelMesh.cs" />
<Compile Include="Pathfinding\Voxels\VoxelPolygonClipper.cs" />
<Compile Include="Pathfinding\Voxels\VoxelSpan.cs" />
<Compile Include="Pathfinding\WindowsStore\WindowsStoreCompatibility.cs" />
<Compile Include="Pathfinding\WorkItemProcessor.cs" />
<Compile Include="Pathfinding\XPath.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\mscorlib\mscorlib.csproj">
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95a9d}</Project>
<Name>mscorlib</Name>
</ProjectReference>
<ProjectReference Include="..\Pathfinding.ClipperLib\Pathfinding.ClipperLib.csproj">
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95aa1}</Project>
<Name>Pathfinding.ClipperLib</Name>
</ProjectReference>
<ProjectReference Include="..\Pathfinding.Ionic.Zip.Reduced\Pathfinding.Ionic.Zip.Reduced.csproj">
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95aa2}</Project>
<Name>Pathfinding.Ionic.Zip.Reduced</Name>
</ProjectReference>
<ProjectReference Include="..\Pathfinding.Poly2Tri\Pathfinding.Poly2Tri.csproj">
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95aa3}</Project>
<Name>Pathfinding.Poly2Tri</Name>
</ProjectReference>
<ProjectReference Include="..\System.Core\System.Core.csproj">
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95ad6}</Project>
<Name>System.Core</Name>
</ProjectReference>
<ProjectReference Include="..\System\System.csproj">
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95ad8}</Project>
<Name>System</Name>
</ProjectReference>
<ProjectReference Include="..\UnityEngine.AnimationModule\UnityEngine.AnimationModule.csproj">
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95aef}</Project>
<Name>UnityEngine.AnimationModule</Name>
</ProjectReference>
<ProjectReference Include="..\UnityEngine.CoreModule\UnityEngine.CoreModule.csproj">
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95af4}</Project>
<Name>UnityEngine.CoreModule</Name>
</ProjectReference>
<ProjectReference Include="..\UnityEngine.IMGUIModule\UnityEngine.IMGUIModule.csproj">
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95afa}</Project>
<Name>UnityEngine.IMGUIModule</Name>
</ProjectReference>
<ProjectReference Include="..\UnityEngine.Physics2DModule\UnityEngine.Physics2DModule.csproj">
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95aff}</Project>
<Name>UnityEngine.Physics2DModule</Name>
</ProjectReference>
<ProjectReference Include="..\UnityEngine.PhysicsModule\UnityEngine.PhysicsModule.csproj">
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95b00}</Project>
<Name>UnityEngine.PhysicsModule</Name>
</ProjectReference>
<ProjectReference Include="..\UnityEngine.TerrainModule\UnityEngine.TerrainModule.csproj">
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95b05}</Project>
<Name>UnityEngine.TerrainModule</Name>
</ProjectReference>
<ProjectReference Include="..\UnityEngine.TextRenderingModule\UnityEngine.TextRenderingModule.csproj">
<Project>{2d4e062a-048a-43c7-9d34-b845ecc95b08}</Project>
<Name>UnityEngine.TextRenderingModule</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>