a03b5a0c95
Co-authored-by: Katelyn Gigante <clockwork.singularity@gmail.com>
30 lines
929 B
XML
30 lines
929 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- This warning triggers on most record classes. It is unhelpful. :/ -->
|
|
<NoWarn>$(NoWarn);8618</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Polly" Version="7.2.1" />
|
|
<PackageReference Include="Polly.Contrib.WaitAndRetry" Version="1.1.1" />
|
|
<PackageReference Include="Serilog" Version="2.10.0" />
|
|
<PackageReference Include="System.Linq.Async" Version="5.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|