AStar/astar/astar.csproj

20 lines
452 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" />
</ItemGroup>
<ItemGroup>
<Reference Include="Logging">
<HintPath>..\..\Logging\Logging\bin\Debug\net6.0\Logging.dll</HintPath>
</Reference>
2022-05-05 02:00:55 +02:00
</ItemGroup>
2022-05-05 01:33:56 +02:00
</Project>