2020-05-07 04:09:55 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2019-07-09 18:39:29 +00:00
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-11-27 02:10:56 +00:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2021-05-07 08:48:19 +00:00
|
|
|
<Nullable>annotations</Nullable>
|
2021-11-27 02:10:56 +00:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2019-07-09 18:39:29 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-05-07 04:09:55 +00:00
|
|
|
<!-- This enables XML generation for Swashbuckle -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
|
|
|
</PropertyGroup>
|
2020-08-25 18:36:38 +00:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
2021-11-27 02:10:56 +00:00
|
|
|
<DebugType>full</DebugType>
|
2020-08-25 18:36:38 +00:00
|
|
|
</PropertyGroup>
|
2020-05-07 04:09:55 +00:00
|
|
|
|
2019-07-09 18:39:29 +00:00
|
|
|
<ItemGroup>
|
2022-03-23 18:24:09 +00:00
|
|
|
<ProjectReference Include="..\PluralKit.Core\PluralKit.Core.csproj" />
|
2019-07-09 18:39:29 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-03-23 18:24:09 +00:00
|
|
|
<_ContentIncludedByDefault Remove="Properties\launchSettings.json" />
|
2019-07-09 18:39:29 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2021-07-08 13:04:20 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-07-15 17:08:47 +00:00
|
|
|
<ItemGroup>
|
2022-03-23 18:24:09 +00:00
|
|
|
<PackageReference Include="Google.Protobuf" Version="3.13.0" />
|
2022-07-05 11:15:30 +00:00
|
|
|
<PackageReference Include="Grpc.Tools" Version="2.47.0" PrivateAssets="all" />
|
2022-03-23 18:24:09 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.0" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning" Version="4.2.0" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer" Version="4.2.0" />
|
|
|
|
<PackageReference Include="Serilog.AspNetCore" Version="3.4.0" />
|
2019-07-15 17:08:47 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2022-01-22 08:52:52 +00:00
|
|
|
<ItemGroup>
|
2022-03-23 18:24:09 +00:00
|
|
|
<Protobuf Include="../proto/state.proto" GrpcServices="Client" Link="Protos/state.proto" />
|
2022-01-22 08:52:52 +00:00
|
|
|
</ItemGroup>
|
2019-07-09 18:39:29 +00:00
|
|
|
</Project>
|