PluralKit/Myriad/Myriad.csproj

38 lines
1.4 KiB
XML
Raw Normal View History

2020-12-22 13:15:26 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2024-12-23 00:51:58 +00:00
<TargetFramework>net8.0</TargetFramework>
2020-12-22 13:15:26 +01:00
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
2020-12-22 13:15:26 +01:00
</PropertyGroup>
<PropertyGroup>
<!-- This warning triggers on most record classes. It is unhelpful. :/ -->
<NoWarn>$(NoWarn);8618</NoWarn>
</PropertyGroup>
2020-12-22 13:15:26 +01:00
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
2020-12-22 13:15:26 +01:00
<ItemGroup>
2024-12-23 00:51:58 +00:00
<PackageReference Include="Google.Protobuf" Version="3.29.1" />
<PackageReference Include="Grpc.Net.ClientFactory" Version="2.67.0" />
<PackageReference Include="Grpc.Tools" Version="2.68.1" PrivateAssets="all" />
<PackageReference Include="Polly" Version="8.5.0" />
<PackageReference Include="Polly.Contrib.WaitAndRetry" Version="1.1.1" />
<PackageReference Include="Serilog" Version="4.2.0" />
<PackageReference Include="StackExchange.Redis" Version="2.8.22" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
2020-12-22 13:15:26 +01:00
</ItemGroup>
2022-04-13 08:44:53 -04:00
<ItemGroup>
2024-12-23 00:51:58 +00:00
<Protobuf Include="../proto/discord_cache.proto" GrpcServices="Client" Link="Protos/discord_cache.proto" />
2022-04-13 08:44:53 -04:00
</ItemGroup>
2020-12-22 13:15:26 +01:00
</Project>