AStar/Executable/Executable.csproj

17 lines
477 B
XML
Raw Normal View History

2022-05-05 02:00:38 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\astar\astar.csproj" />
2022-05-06 00:40:58 +02:00
<ProjectReference Include="..\Graph\Graph.csproj" />
<ProjectReference Include="..\OpenStreetMap Importer\OpenStreetMap Importer.csproj" />
2022-05-05 02:00:38 +02:00
</ItemGroup>
</Project>