Skip to content

Commit 69fc922

Browse files
authored
NLog v6 RC3 (#792)
1 parent 83a33dc commit 69fc922

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

CHANGELOG.MD

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
Date format: (year/month/day)
44

5+
### Version 6.0 RC3 (2025/06/08)
6+
7+
- Updated to NLog v6.0-RC3
8+
- Avoid boxing when extracting LogEvent properties from struct
9+
- Updated NLog.Extensions.Hosting to support ${host-environment}
10+
- Updated NLog.Extensions.Hosting to support ${host-rootdir}
11+
- Updated NLog.Extensions.Hosting to support ${host-appname}
12+
- Updated NLog.Extensions.Hosting to support .NET Framework 4.6.2 using NET8-nuget-dependencies
13+
514
### Version 6.0 RC2 (2025/06/02)
615

716
- Updated to NLog v6.0-RC2

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
dotnet --version
44

55
$versionPrefix = "6.0.0"
6-
$versionSuffix = "rc2"
6+
$versionSuffix = "rc3"
77
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
88
$versionProduct = $versionPrefix;
99

src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,16 @@ For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
1818
<PackageReleaseNotes>
1919
ChangeLog:
2020

21-
- Updated to NLog v6.0-RC2
21+
- Updated to NLog v6.0-RC3
2222
- Removed support for NetStandard 1.3 + 1.5
2323
- Enabled nullable references
2424
- Avoid boxing when extracting LogEvent properties from struct
2525
- Reduce allocation when creating LogEvent with properties by using ReadOnlySpan
2626
- Enabled &lt;IsAotCompatible&gt;
27+
- Updated NLog.Extensions.Hosting to support ${host-environment}
28+
- Updated NLog.Extensions.Hosting to support ${host-rootdir}
29+
- Updated NLog.Extensions.Hosting to support ${host-appname}
30+
- Updated NLog.Extensions.Hosting to support .NET Framework 4.6.2 using NET8-nuget-dependencies
2731

2832
Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD
2933

@@ -75,7 +79,7 @@ List of major changes in NLog 6.0: https://nlog-project.org/2025/04/29/nlog-6-0-
7579
</PropertyGroup>
7680

7781
<ItemGroup>
78-
<PackageReference Include="NLog" Version="6.0.0-rc2" />
82+
<PackageReference Include="NLog" Version="6.0.0-rc3" />
7983
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
8084
</ItemGroup>
8185
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">

test/NLog.Extensions.Hosting.Tests/NLog.Extensions.Hosting.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
18+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
1919
<PackageReference Include="xunit" Version="2.9.3" />
2020
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
2121
<PrivateAssets>all</PrivateAssets>

test/NLog.Extensions.Logging.Tests/NLog.Extensions.Logging.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<ItemGroup>
1818
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.1" />
19-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
19+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
2020
<PackageReference Include="xunit" Version="2.9.3" />
2121
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
2222
<PrivateAssets>all</PrivateAssets>

0 commit comments

Comments
 (0)