2023-04-06 01:29:45 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.4" />
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Folder Include="Controllers" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Pathfinding\Pathfinding.csproj" />
|
2023-04-13 00:24:33 +02:00
|
|
|
<ProjectReference Include="..\RenderPath\RenderPath.csproj" />
|
2023-04-06 01:29:45 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|