AStar/astar/astar.csproj

15 lines
354 B
XML
Raw Normal View History

2022-05-05 01:33:56 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2022-05-05 02:00:55 +02:00
<ItemGroup>
<ProjectReference Include="..\Graph\Graph.csproj" />
2022-05-05 02:00:55 +02:00
<ProjectReference Include="..\Logging\Logging.csproj" />
</ItemGroup>
2022-05-05 01:33:56 +02:00
</Project>