Skip to content

Commit

Permalink
Bump deps (#110)
Browse files Browse the repository at this point in the history
* Bump deps

* Fix formatting
  • Loading branch information
alexaka1 authored Sep 24, 2024
1 parent 2cd9d67 commit bfc1548
Show file tree
Hide file tree
Showing 3 changed files with 132 additions and 132 deletions.
6 changes: 3 additions & 3 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<PackageVersion Include="GitHubActionsTestLogger" Version="2.4.1"/>
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="8.0.0"/>
<PackageVersion Include="Microsoft.Extensions.Logging" Version="8.0.0"/>
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.0"/>
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1"/>
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0"/>
<PackageVersion Include="Moq" Version="4.20.70"/>
<PackageVersion Include="Moq" Version="4.20.72"/>
<PackageVersion Include="Serilog" Version="4.0.1"/>
<PackageVersion Include="Serilog.Enrichers.Environment" Version="3.0.1"/>
<PackageVersion Include="Serilog.Enrichers.Memory" Version="1.0.4"/>
Expand All @@ -27,7 +27,7 @@
<PackageVersion Include="System.Collections.Immutable" Version="8.0.0"/>
<PackageVersion Include="System.Reflection.Metadata" Version="8.0.0"/>
<PackageVersion Include="System.Text.Json" Version="8.0.4"/>
<PackageVersion Include="xunit" Version="2.9.0"/>
<PackageVersion Include="xunit" Version="2.9.1"/>
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2"/>
</ItemGroup>
</Project>
10 changes: 5 additions & 5 deletions test/Serilog.Extensions.Formatting.Test/HostTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ public HostTests(ITestOutputHelper output)
SelfLog.Enable(_output.WriteLine);
}

public void Dispose()
{
SelfLog.Disable();
}

[Theory]
[MemberData(nameof(MemberData))]
public async Task HostedServiceCanWriteOnManyThreads(HostParams data)
Expand Down Expand Up @@ -154,10 +159,5 @@ public HostParams(ServiceProvider services, int iterations, int threads, string
FilePath = filePath;
}
}

public void Dispose()
{
SelfLog.Disable();
}
}
}
Loading

0 comments on commit bfc1548

Please sign in to comment.