2023-11-25 09:24:04 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
2023-11-30 16:46:33 +01:00
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<NoWarn>1701;1702;1591</NoWarn>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
<NoWarn>1701;1702;1591</NoWarn>
|
2023-11-25 09:24:04 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-01-15 10:33:10 +01:00
|
|
|
<PackageReference Include="Microsoft.AspNet.SignalR.Core" Version="2.4.3" />
|
2023-11-25 19:00:12 +01:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" />
|
|
|
|
<PackageReference Include="NetTopologySuite.IO.GeoJSON" Version="4.0.0" />
|
2023-11-25 09:24:04 +01:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Libs_SequentMicrosystems\Libs_SequentMicrosystems.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|