2020-12-22 12:15:26 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-11-27 02:10:56 +00:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2020-12-22 12:15:26 +00:00
|
|
|
<Nullable>enable</Nullable>
|
2021-11-27 02:10:56 +00:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2020-12-22 12:15:26 +00:00
|
|
|
</PropertyGroup>
|
2021-11-27 02:10:56 +00:00
|
|
|
|
2021-05-07 08:48:19 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<!-- This warning triggers on most record classes. It is unhelpful. :/ -->
|
|
|
|
<NoWarn>$(NoWarn);8618</NoWarn>
|
|
|
|
</PropertyGroup>
|
2020-12-22 12:15:26 +00:00
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2021-07-08 13:04:20 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-12-22 12:15:26 +00:00
|
|
|
<ItemGroup>
|
2022-04-13 12:44:53 +00:00
|
|
|
<PackageReference Include="Google.Protobuf" Version="3.13.0"/>
|
|
|
|
<PackageReference Include="Grpc.Net.ClientFactory" Version="2.32.0" />
|
2022-07-05 11:15:30 +00:00
|
|
|
<PackageReference Include="Grpc.Tools" Version="2.47.0" PrivateAssets="all" />
|
2021-11-27 02:10:56 +00:00
|
|
|
<PackageReference Include="Polly" Version="7.2.1"/>
|
|
|
|
<PackageReference Include="Polly.Contrib.WaitAndRetry" Version="1.1.1"/>
|
|
|
|
<PackageReference Include="Serilog" Version="2.10.0"/>
|
2022-01-13 17:26:25 +00:00
|
|
|
<PackageReference Include="StackExchange.Redis" Version="2.2.88" />
|
2021-11-27 02:10:56 +00:00
|
|
|
<PackageReference Include="System.Linq.Async" Version="5.0.0"/>
|
2020-12-22 12:15:26 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2022-04-13 12:44:53 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<Protobuf Include="../proto/discord_cache.proto" GrpcServices="Client" Link="Protos/discord_cache.proto"/>
|
|
|
|
</ItemGroup>
|
2020-12-22 12:15:26 +00:00
|
|
|
</Project>
|