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>
|
2021-11-26 21:10:56 -05:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2020-12-22 13:15:26 +01:00
|
|
|
</PropertyGroup>
|
2021-11-26 21:10:56 -05:00
|
|
|
|
2021-05-07 10:48:19 +02:00
|
|
|
<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>
|
|
|
|
|
|
2021-07-08 09:04:20 -04:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-12-22 13:15:26 +01:00
|
|
|
<ItemGroup>
|
2025-03-29 17:55:01 +00:00
|
|
|
<PackageReference Include="NodaTime" Version="3.2.0" />
|
|
|
|
|
<PackageReference Include="NodaTime.Serialization.JsonNet" Version="3.1.0" />
|
2024-12-23 00:51:58 +00:00
|
|
|
<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>
|
|
|
|
|
</Project>
|