2020-05-07 06:09:55 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2019-07-09 20:39:29 +02:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-12-23 00:51:58 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2021-05-07 10:48:19 +02:00
|
|
|
<Nullable>annotations</Nullable>
|
2021-11-26 21:10:56 -05:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2019-07-09 20:39:29 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-05-07 06:09:55 +02:00
|
|
|
<!-- This enables XML generation for Swashbuckle -->
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
|
|
|
|
</PropertyGroup>
|
2020-08-25 20:36:38 +02:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
2021-11-26 21:10:56 -05:00
|
|
|
<DebugType>full</DebugType>
|
2020-08-25 20:36:38 +02:00
|
|
|
</PropertyGroup>
|
2020-05-07 06:09:55 +02:00
|
|
|
|
2019-07-09 20:39:29 +02:00
|
|
|
<ItemGroup>
|
2022-03-23 14:24:09 -04:00
|
|
|
<ProjectReference Include="..\PluralKit.Core\PluralKit.Core.csproj" />
|
2019-07-09 20:39:29 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-03-23 14:24:09 -04:00
|
|
|
<_ContentIncludedByDefault Remove="Properties\launchSettings.json" />
|
2019-07-09 20:39:29 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-07-08 09:04:20 -04:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-07-15 19:08:47 +02:00
|
|
|
<ItemGroup>
|
2024-12-23 00:51:58 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.11" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning" Version="5.1.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer" Version="5.1.0" />
|
2025-02-23 18:49:31 +00:00
|
|
|
<PackageReference Include="Sentry" Version="4.13.0" />
|
2025-05-18 13:14:29 +00:00
|
|
|
<PackageReference Include="Serilog.AspNetCore" Version="8.0.0" />
|
2019-07-15 19:08:47 +02:00
|
|
|
</ItemGroup>
|
2019-07-09 20:39:29 +02:00
|
|
|
</Project>
|