Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Atc.Hosting/Atc.Hosting.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Atc" Version="2.0.500" />
<PackageReference Include="Cronos" Version="0.8.4" />
<PackageReference Include="Atc" Version="2.0.525" />
<PackageReference Include="Cronos" Version="0.9.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ internal sealed class NullBackgroundServiceHealthService : IBackgroundServiceHea
/// <summary>
/// Returns static instance of <see cref="NullBackgroundServiceHealthService"/>
/// </summary>
public static NullBackgroundServiceHealthService Instance => new NullBackgroundServiceHealthService();
public static NullBackgroundServiceHealthService Instance => new();

private NullBackgroundServiceHealthService()
{
Expand Down
Loading