Skip to content

Commit da92355

Browse files
committed
NLog v6 has reduced its footprint
1 parent 8817809 commit da92355

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

_posts/2025-04-29-nlog-6-0-major-changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ But reflection does not always work well with build-trimming, and before NLog ma
1717
NLog includes many features, and each feature often introduces additional dependencies on the .NET library.
1818
This can lead to overhead for AOT builds, as it must include and compile all the relevant source code.
1919

20-
NLog v6 reducing its footprint by extracting features into separate nuget-packages:
20+
NLog v6 has reduced its footprint by extracting features into separate nuget-packages:
2121

2222
- [NLog.Targets.AtomicFile](https://www.nuget.org/packages/NLog.Targets.AtomicFile) - ConcurrentWrites using atomic file-append from operating system API.
2323
- [NLog.Targets.ConcurrentFile](https://www.nuget.org/packages/NLog.Targets.ConcurrentFile) - ConcurrentWrites using global mutex from operating system API.

_posts/2025-06-21-nlog-6-0-released.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ layout: post
33
title: NLog 6.0 with AOT support
44
---
55

6-
NLog v6 with the following major changes:
6+
NLog v6 includes the following major changes:
77

8-
- Support Ahead-of-Time (AOT) builds without warnings
9-
- Support Nullable references
10-
- Support ReadOnlySpan to reduce memory allocations
11-
- LogFactory supports FlushAsync and IDisposableAsync
12-
- FileTarget removed support for ConcurrentWrites
13-
- FileTarget refactored file-archive-logic with ArchiveSuffixFormat
8+
- Support Ahead-of-Time (AOT) builds without warnings.
9+
- Support Nullable references.
10+
- Support ReadOnlySpan to reduce memory allocations.
11+
- LogFactory supports FlushAsync and IDisposableAsync.
12+
- FileTarget removed support for ConcurrentWrites.
13+
- FileTarget refactored file-archive-logic with ArchiveSuffixFormat.
1414

15-
NLog v6 reducing its footprint by extracting features into separate nuget-packages:
15+
NLog v6 has reduced its footprint by extracting features into separate nuget-packages:
1616

1717
- [NLog.Targets.AtomicFile](https://www.nuget.org/packages/NLog.Targets.AtomicFile) - ConcurrentWrites using atomic file-append from operating system API.
1818
- [NLog.Targets.ConcurrentFile](https://www.nuget.org/packages/NLog.Targets.ConcurrentFile) - Original FileTarget with ConcurrentWrites using global mutex from operating system API.

0 commit comments

Comments
 (0)