OSMServer/Server/Server.csproj

19 lines
485 B
XML
Raw 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-02-02 22:30:43 +01:00
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Runtime.Serialization.Json" Version="4.3.0" />
</ItemGroup>
2023-02-02 19:03:00 +01:00
</Project>