AStar/Executable/Executable.csproj

32 lines
899 B
XML
Raw Normal View History

2022-05-05 02:00:38 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
2024-07-19 17:59:19 +02:00
<TargetFramework>net8.0</TargetFramework>
2022-05-05 02:00:38 +02:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2024-07-19 17:59:19 +02:00
<LangVersion>12</LangVersion>
2022-05-05 02:00:38 +02:00
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\astar\astar.csproj" />
</ItemGroup>
<ItemGroup>
2024-07-22 04:56:22 +02:00
<PackageReference Include="GlaxArguments" Version="1.1.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="Graph">
<HintPath>..\..\OSM_Graph\OSM_Graph\bin\Debug\net8.0\Graph.dll</HintPath>
2022-11-13 15:29:31 +01:00
</Reference>
2024-07-22 04:56:22 +02:00
<Reference Include="OSM_Graph">
<HintPath>..\..\OSM_Graph\OSM_Graph\bin\Debug\net8.0\OSM_Graph.dll</HintPath>
</Reference>
2024-07-22 04:56:22 +02:00
<Reference Include="OSM_Regions">
<HintPath>..\..\OSM_Regions\OSM_Regions\bin\Debug\net8.0\OSM_Regions.dll</HintPath>
2022-11-13 15:29:31 +01:00
</Reference>
</ItemGroup>
2022-05-05 02:00:38 +02:00
</Project>