PluralKit/Myriad/Myriad.csproj

31 lines
977 B
XML
Raw Normal View History

2020-12-22 12:15:26 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
2020-12-22 12:15:26 +00:00
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
2020-12-22 12:15:26 +00:00
</PropertyGroup>
<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>
<PropertyGroup>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
2020-12-22 12:15:26 +00:00
<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"/>
2020-12-22 12:15:26 +00:00
</ItemGroup>
</Project>