Skip to content

Commit d54b133

Browse files
authored
Merge pull request #429 from serilog/dev
8.0.2 Release
2 parents 0ab5073 + e42be6a commit d54b133

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Diff for: src/Serilog.Settings.Configuration/Serilog.Settings.Configuration.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.</Description>
55
<!-- This must match the major and minor components of the referenced Microsoft.Extensions.Logging package. -->
6-
<VersionPrefix>8.0.1</VersionPrefix>
6+
<VersionPrefix>8.0.2</VersionPrefix>
77
<Authors>Serilog Contributors</Authors>
88
<!-- These must match the Dependencies tab in https://www.nuget.org/packages/microsoft.settings.configuration at
99
the target version. -->
@@ -38,6 +38,6 @@
3838
<ItemGroup>
3939
<!-- The versions of all references in this group must match the major and minor components of the package version prefix. -->
4040
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.0" />
41-
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="8.0.0" />
41+
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="8.0.1" />
4242
</ItemGroup>
4343
</Project>

Diff for: test/Serilog.Settings.Configuration.Tests/ConfigurationSettingsTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public void PropertyEnrichmentIsApplied()
6060
[Theory]
6161
[InlineData(null)]
6262
[InlineData("")]
63-
public void CanReadWithoutSerilogSection(string sectionName)
63+
public void CanReadWithoutSerilogSection(string? sectionName)
6464
{
6565
LogEvent? evt = null;
6666

Diff for: test/Serilog.Settings.Configuration.Tests/Serilog.Settings.Configuration.Tests.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT'">net48</TargetFrameworks>
@@ -25,7 +25,7 @@
2525
<PackageReference Include="NuGet.Frameworks" Version="6.7.0" />
2626
<PackageReference Include="Polly" Version="8.2.0" />
2727
<PackageReference Include="Serilog.Expressions" Version="4.0.0" />
28-
<PackageReference Include="xunit" Version="2.5.3" />
28+
<PackageReference Include="xunit" Version="2.9.0" />
2929
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
3030
<PackageReference Include="Shouldly" Version="4.2.1" />
3131
<PackageReference Include="PublicApiGenerator" Version="11.0.0" />

Diff for: test/Serilog.Settings.Configuration.Tests/StringArgumentValueTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public void StringValuesConvertToDefaultInstancesIfTargetIsAbstractClass()
5454
// a full-qualified type name should not be considered a static member accessor
5555
[InlineData("My.NameSpace.Class, MyAssembly, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
5656
null, null)]
57-
public void TryParseStaticMemberAccessorReturnsExpectedResults(string input, string? expectedAccessorType, string expectedPropertyName)
57+
public void TryParseStaticMemberAccessorReturnsExpectedResults(string? input, string? expectedAccessorType, string? expectedPropertyName)
5858
{
5959
var actual = StringArgumentValue.TryParseStaticMemberAccessor(input,
6060
out var actualAccessorType,

0 commit comments

Comments
 (0)