File tree Expand file tree Collapse file tree 5 files changed +23
-8
lines changed
test/NLog.Extensions.Logging.Tests Expand file tree Collapse file tree 5 files changed +23
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Date format: (year/month/day)
4
4
5
+ ### Version 6.0 (2025/06/21)
6
+
7
+ - Updated to NLog v6.0
8
+ - Removed support for NetStandard 1.3 + 1.5
9
+ - Updated .NET Framework 4.6.2 with NET8-nuget-dependencies
10
+ - Enabled nullable references
11
+ - Avoid boxing when extracting LogEvent properties from struct
12
+ - Reduce allocation when creating LogEvent with properties by using ReadOnlySpan
13
+ - Enabled < ; IsAotCompatible> ;
14
+ - Added ${host-environment} for NLog.Extensions.Hosting
15
+ - Added ${host-rootdir} for NLog.Extensions.Hosting
16
+ - Added ${host-appname} for NLog.Extensions.Hosting
17
+ - Added RegisterHostSettings for NLog.Extensions.Hosting
18
+
19
+ List of major changes in NLog 6.0: https://nlog-project.org/2025/04/29/nlog-6-0-major-changes.html
20
+
5
21
### Version 6.0 RC4 (2025/06/15)
6
22
7
23
- Updated to NLog v6.0-RC4
Original file line number Diff line number Diff line change 3
3
dotnet -- version
4
4
5
5
$versionPrefix = " 6.0.0"
6
- $versionSuffix = " rc4 "
6
+ $versionSuffix = " "
7
7
$versionFile = $versionPrefix + " ." + ${env: APPVEYOR_BUILD_NUMBER}
8
8
$versionProduct = $versionPrefix ;
9
9
Original file line number Diff line number Diff line change 15
15
16
16
For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
17
17
</Description >
18
- <PackageTags >NLog;Microsoft.Extensions.Hosting;log;logging;logfiles;netcore </PackageTags >
18
+ <PackageTags >NLog;Microsoft.Extensions.Hosting;log;logging;logfiles;hosting </PackageTags >
19
19
<PackageReleaseNotes >
20
20
Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD
21
21
</PackageReleaseNotes >
Original file line number Diff line number Diff line change 14
14
15
15
For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
16
16
</Description >
17
- <PackageTags >NLog;Microsoft.Extensions.Logging;log;logging;logfiles;netcore </PackageTags >
17
+ <PackageTags >NLog;Microsoft.Extensions.Logging;log;logging;logfiles</PackageTags >
18
18
<PackageReleaseNotes >
19
19
ChangeLog:
20
20
21
- - Updated to NLog v6.0-RC4
21
+ - Updated to NLog v6.0
22
22
- Removed support for NetStandard 1.3 + 1.5
23
- - Replaced .NET Framework v4 .6.1 with v4.6.2 and NET8-nuget-dependencies.
23
+ - Updated .NET Framework 4 .6.2 with NET8-nuget-dependencies
24
24
- Enabled nullable references
25
25
- Avoid boxing when extracting LogEvent properties from struct
26
26
- Reduce allocation when creating LogEvent with properties by using ReadOnlySpan
@@ -29,7 +29,6 @@ ChangeLog:
29
29
- Added ${host-rootdir} for NLog.Extensions.Hosting
30
30
- Added ${host-appname} for NLog.Extensions.Hosting
31
31
- Added RegisterHostSettings for NLog.Extensions.Hosting
32
- - Updated NLog.Extensions.Hosting to support .NET Framework 4.6.2 using NET8-nuget-dependencies
33
32
34
33
Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD
35
34
@@ -81,7 +80,7 @@ List of major changes in NLog 6.0: https://nlog-project.org/2025/04/29/nlog-6-0-
81
80
</PropertyGroup >
82
81
83
82
<ItemGroup >
84
- <PackageReference Include =" NLog" Version =" 6.0.0-rc4 " />
83
+ <PackageReference Include =" NLog" Version =" 6.0.0" />
85
84
<PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 8.0.0" PrivateAssets =" All" />
86
85
</ItemGroup >
87
86
<ItemGroup Condition =" '$(TargetFramework)' == 'net462' " >
Original file line number Diff line number Diff line change 25
25
</ItemGroup >
26
26
27
27
<ItemGroup Condition =" '$(TargetFramework)' == 'net462' " >
28
- <PackageReference Include =" System.ValueTuple" Version =" 4.5.0 " />
28
+ <PackageReference Include =" System.ValueTuple" Version =" 4.6.1 " />
29
29
<PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 8.0.1" />
30
30
</ItemGroup >
31
31
You can’t perform that action at this time.
0 commit comments