AStar/Executable/Executable.csproj
2024-07-19 17:59:19 +02:00

28 lines
866 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>12</LangVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\astar\astar.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="Geo-Graph">
<HintPath>C:\Users\glax\source\repos\Geo-Graph\Geo-Graph\bin\Debug\net6.0\Geo-Graph.dll</HintPath>
</Reference>
<Reference Include="Logging">
<HintPath>..\..\Logging\Logging\bin\Debug\net6.0\Logging.dll</HintPath>
</Reference>
<Reference Include="OSM-XML-Importer">
<HintPath>C:\Users\glax\source\repos\OSM-XML-Importer\OSM-XML-Importer\bin\Debug\net6.0\OSM-XML-Importer.dll</HintPath>
</Reference>
</ItemGroup>
</Project>