21 lines
629 B
XML
21 lines
629 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Pathfinding\Pathfinding.csproj" />
|
|
<ProjectReference Include="..\RenderPath\RenderPath.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
|
|
<PackageReference Include="System.Runtime.Serialization.Json" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|