From bacb70630e4a6455c3501986d612d6cf0e4455e8 Mon Sep 17 00:00:00 2001 From: Rolf Kristensen Date: Wed, 6 Dec 2023 22:43:33 +0100 Subject: [PATCH] Version 5.3.7 (#1011) --- CHANGELOG.MD | 9 +++++++++ build.ps1 | 2 +- .../ASP.NET 4.6.1 - VS2017/ASP.NET 4.6.1 - VS2017.csproj | 2 +- .../ASP.NET 4.6.1 - VS2017/packages.config | 2 +- src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj | 7 ++++--- src/NLog.Web/NLog.Web.csproj | 2 +- .../NLog.Web.AspNetCore.Tests.csproj | 2 +- tests/NLog.Web.Tests/NLog.Web.Tests.csproj | 2 +- 8 files changed, 19 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index cb6a1369..a6af9e9d 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -4,6 +4,15 @@ See also [releases](https://github.com/NLog/NLog.Web/releases) and [milestones]( Date format: (year/month/day) +### Version 5.3.7 (2023/12/06) + +- **NLog.Web.AspNetCore** + - [#1010](https://github.com/NLog/NLog.Web/pull/1010) Added target platform for NET 8.0 (#1010) (@snakefoot) + - [#1011](https://github.com/NLog/NLog.Web/pull/1011) Updated dependency NLog.Extensions.Logging v5.3.7 (#1011) (@snakefoot) + +- **NLog.Web** + - [#1011](https://github.com/NLog/NLog.Web/pull/1011) Updated dependency NLog v5.2.7 (#1011) (@snakefoot) + ### Version 5.3.5 (2023/10/15) - **NLog.Web.AspNetCore** diff --git a/build.ps1 b/build.ps1 index 75b96e46..ce80ad8d 100644 --- a/build.ps1 +++ b/build.ps1 @@ -2,7 +2,7 @@ # creates NuGet package at \artifacts dotnet --version -$versionPrefix = "5.3.5" # Also update version for minor versions in appveyor.yml +$versionPrefix = "5.3.7" # Also update version for minor versions in appveyor.yml $versionSuffix = "" $versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER} if ($env:APPVEYOR_PULL_REQUEST_NUMBER) { diff --git a/examples/ASP.NET 4.6.1/Visual Studio 2017/ASP.NET 4.6.1 - VS2017/ASP.NET 4.6.1 - VS2017.csproj b/examples/ASP.NET 4.6.1/Visual Studio 2017/ASP.NET 4.6.1 - VS2017/ASP.NET 4.6.1 - VS2017.csproj index 0032fcd6..11eb7f13 100644 --- a/examples/ASP.NET 4.6.1/Visual Studio 2017/ASP.NET 4.6.1 - VS2017/ASP.NET 4.6.1 - VS2017.csproj +++ b/examples/ASP.NET 4.6.1/Visual Studio 2017/ASP.NET 4.6.1 - VS2017/ASP.NET 4.6.1 - VS2017.csproj @@ -46,7 +46,7 @@ - ..\..\..\..\packages\NLog.5.2.5\lib\net46\NLog.dll + ..\..\..\..\packages\NLog.5.2.7\lib\net46\NLog.dll diff --git a/examples/ASP.NET 4.6.1/Visual Studio 2017/ASP.NET 4.6.1 - VS2017/packages.config b/examples/ASP.NET 4.6.1/Visual Studio 2017/ASP.NET 4.6.1 - VS2017/packages.config index 998c30c3..fffcfa3d 100644 --- a/examples/ASP.NET 4.6.1/Visual Studio 2017/ASP.NET 4.6.1 - VS2017/packages.config +++ b/examples/ASP.NET 4.6.1/Visual Studio 2017/ASP.NET 4.6.1 - VS2017/packages.config @@ -12,7 +12,7 @@ - + \ No newline at end of file diff --git a/src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj b/src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj index a036206f..f32b209c 100644 --- a/src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj +++ b/src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj @@ -1,4 +1,4 @@ - + net461;netstandard2.0;netcoreapp3.1;net5.0;net6.0;net8.0 NLog.Web.AspNetCore v$(VersionPrefix) @@ -15,7 +15,8 @@ Integrates NLog as provider for Microsoft.Extensions.Logging, and provides NLog ChangeLog: -- Updated dependency NLog.Extensions.Logging v5.3.4 (#983) (@snakefoot) +- Added target platform for NET 8.0 (#1010) (@snakefoot) +- Updated dependency NLog.Extensions.Logging v5.3.7 (#1011) (@snakefoot) List of major changes in NLog 5.0: https://nlog-project.org/2022/05/16/nlog-5-0-finally-ready.html @@ -72,7 +73,7 @@ List of available Layout Renderers: https://nlog-project.org/config/?tab=layout- $(Title) - + diff --git a/src/NLog.Web/NLog.Web.csproj b/src/NLog.Web/NLog.Web.csproj index a1e2f9c3..38fe3fec 100644 --- a/src/NLog.Web/NLog.Web.csproj +++ b/src/NLog.Web/NLog.Web.csproj @@ -69,7 +69,7 @@ List of available Layout Renderers: https://nlog-project.org/config/?tab=layout- - + diff --git a/tests/NLog.Web.AspNetCore.Tests/NLog.Web.AspNetCore.Tests.csproj b/tests/NLog.Web.AspNetCore.Tests/NLog.Web.AspNetCore.Tests.csproj index 430d2b46..7567243a 100644 --- a/tests/NLog.Web.AspNetCore.Tests/NLog.Web.AspNetCore.Tests.csproj +++ b/tests/NLog.Web.AspNetCore.Tests/NLog.Web.AspNetCore.Tests.csproj @@ -28,7 +28,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/tests/NLog.Web.Tests/NLog.Web.Tests.csproj b/tests/NLog.Web.Tests/NLog.Web.Tests.csproj index cc239bc8..93e44918 100644 --- a/tests/NLog.Web.Tests/NLog.Web.Tests.csproj +++ b/tests/NLog.Web.Tests/NLog.Web.Tests.csproj @@ -12,7 +12,7 @@ ../../NLog.snk - +