OSMServer/Server/Server.csproj

21 lines
629 B
XML
Raw Permalink Normal View History

2023-02-02 19:03:00 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2023-02-02 22:30:43 +01:00
<ItemGroup>
2023-02-05 20:03:47 +01:00
<ProjectReference Include="..\Pathfinding\Pathfinding.csproj" />
2023-04-13 00:24:33 +02:00
<ProjectReference Include="..\RenderPath\RenderPath.csproj" />
2023-02-02 22:30:43 +01:00
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
<PackageReference Include="System.Runtime.Serialization.Json" Version="4.3.0" />
</ItemGroup>
2023-02-02 19:03:00 +01:00
</Project>