Skip to content

Commit 70bae08

Browse files
authoredDec 6, 2023
Version 5.3.7 (#713)
1 parent 7948d0b commit 70bae08

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed
 

‎CHANGELOG.MD

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

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

5+
### Version 5.3.7 (2023/12/06)
6+
7+
**Improvements**
8+
- [#705](https://github.com/NLog/NLog.Extensions.Logging/pull/705): Added target platform for NET 8.0 (#705) (@snakefoot)
9+
- [#710](https://github.com/NLog/NLog.Extensions.Logging/pull/710): Improve XML docs for AddNLog and UseNLog (#710) (@snakefoot)
10+
- [#713](https://github.com/NLog/NLog.Extensions.Logging/pull/713): Updated to NLog v5.2.7 (#713) (@snakefoot)
11+
512
### Version 5.3.5 (2023/10/15)
613

714
**Improvements**

‎build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# creates NuGet package at \artifacts
33
dotnet --version
44

5-
$versionPrefix = "5.3.5"
5+
$versionPrefix = "5.3.7"
66
$versionSuffix = ""
77
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
88
$versionProduct = $versionPrefix;

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

+4-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
<PropertyGroup>
33
<TargetFrameworks>net461;netstandard1.3;netstandard1.5;netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
44
<DebugType Condition=" '$(Configuration)' == 'Debug' ">Full</DebugType>
@@ -18,7 +18,9 @@ For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
1818
<PackageReleaseNotes>
1919
ChangeLog:
2020

21-
- Updated to NLog v5.2.5 (#695) (@snakefoot)
21+
- Added target platform for NET 8.0 (#705) (@snakefoot)
22+
- Improve XML docs for AddNLog and UseNLog (#710) (@snakefoot)
23+
- Updated to NLog v5.2.7 (#713) (@snakefoot)
2224

2325
Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD
2426

0 commit comments

Comments
 (0)
Please sign in to comment.