Skip to content

Commit 755981f

Browse files
authored
Version 6.0.1 (#1097)
1 parent 0a5bed0 commit 755981f

6 files changed

Lines changed: 16 additions & 18 deletions

File tree

CHANGELOG.MD

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ See also [releases](https://github.com/NLog/NLog.Web/releases) and [milestones](
44

55
Date format: (year/month/day)
66

7+
### Version 6.0.1 (2025/06/28)
8+
9+
- **NLog.Web.AspNetCore**
10+
- Updated dependency NLog v6.0.1
11+
12+
- **NLog.Web**
13+
- Updated dependency NLog v6.0.1
14+
715
### Version 6.0 (2025/06/21)
816

917
- **NLog.Web.AspNetCore**

build.ps1

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

5-
$versionPrefix = "6.0.0" # Also update version for minor versions in appveyor.yml
5+
$versionPrefix = "6.0.1"
66
$versionSuffix = ""
77
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
88
if ($env:APPVEYOR_PULL_REQUEST_NUMBER) {

examples/ASP.NET 4.6.1/Visual Studio 2017/ASP.NET 4.6.1 - VS2017/ASP.NET 4.6.1 - VS2017.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<HintPath>..\..\..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
5050
</Reference>
5151
<Reference Include="NLog, Version=6.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
52-
<HintPath>..\..\..\..\packages\NLog.6.0.0\lib\net46\NLog.dll</HintPath>
52+
<HintPath>..\..\..\..\packages\NLog.6.0.1\lib\net46\NLog.dll</HintPath>
5353
</Reference>
5454
<Reference Include="System" />
5555
<Reference Include="System.Data" />

examples/ASP.NET 4.6.1/Visual Studio 2017/ASP.NET 4.6.1 - VS2017/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
<package id="Microsoft.jQuery.Unobtrusive.Validation" version="3.2.12" targetFramework="net461" />
1212
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net461" />
1313
<package id="Modernizr" version="2.8.3" targetFramework="net461" />
14-
<package id="NLog" version="6.0.0" targetFramework="net461" />
14+
<package id="NLog" version="6.0.1" targetFramework="net461" />
1515
<package id="WebGrease" version="1.6.0" targetFramework="net461" />
1616
</packages>

src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,7 @@ Integrates NLog as provider for Microsoft.Extensions.Logging, and provides NLog
1616
<PackageReleaseNotes>
1717
ChangeLog:
1818

19-
- Updated dependency NLog v6.0
20-
- Enabled nullable references
21-
- Removed support for .NET Core 3.1 + .NET v5
22-
- Updated .NET Framework 4.6.2 to use NET8-nuget-dependencies
23-
- Added ${host-environment} as alias for ${aspnet-environment}
24-
- Added ${host-rootdir} as alias for ${aspnet-aspbasepath}
25-
- Added ${host-appname} as alias for ${iis-site-name}
26-
- Removed obsolete extension-methods to register NLog as Logging Provider.
27-
- Removed support for EvaluateAsNestedProperties, instead use ObjectPath.
28-
- Renamed class-names for old LayoutRenderers to follow standards (@bakgerman)
29-
- Marked AspNetLayoutRendererBase DoAppend-method as obsolete (@bakgerman)
19+
- Updated dependency NLog v6.0.1
3020

3121
List of major changes in NLog v6.0: https://nlog-project.org/2025/04/29/nlog-6-0-major-changes.html
3222

@@ -56,7 +46,7 @@ List of available Layout Renderers: https://nlog-project.org/config/?tab=layout-
5646
</PropertyGroup>
5747

5848
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462' ">
59-
<Title>$(AssemblyName) - .NET Framework 4.6.1</Title>
49+
<Title>$(AssemblyName) - .NET Framework 4.6.2</Title>
6050
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
6151
<DefineConstants>$(DefineConstants);ASP_NET_CORE</DefineConstants>
6252
<DebugType Condition=" '$(Configuration)' == 'Debug' ">Full</DebugType>
@@ -77,7 +67,7 @@ List of available Layout Renderers: https://nlog-project.org/config/?tab=layout-
7767
<AssemblyTitle>$(Title)</AssemblyTitle>
7868
</PropertyGroup>
7969
<ItemGroup>
80-
<PackageReference Include="NLog.Extensions.Logging" Version="6.0.0" />
70+
<PackageReference Include="NLog.Extensions.Logging" Version="6.0.1" />
8171
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
8272
</ItemGroup>
8373

@@ -86,7 +76,7 @@ List of available Layout Renderers: https://nlog-project.org/config/?tab=layout-
8676
</ItemGroup>
8777

8878
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net462' ">
89-
<!-- Fixed to 2.3.0 since Long Term Supported (LTS) and only supported version for .NET Framework 4.6.2 -->
79+
<!-- Fixed to 2.3.0 since Long Term Supported (LTS) to support .NET Framework 4.6.2 -->
9080
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.3.0" />
9181
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.3.0" />
9282
<PackageReference Include="Microsoft.AspNetCore.Routing.Abstractions" Version="2.3.0" />

src/NLog.Web/NLog.Web.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ List of available Layout Renderers: https://nlog-project.org/config/?tab=layout-
7171
<DownloadFile SourceUrl="https://nlog-project.org/N.png" DestinationFolder="$(MSBuildThisFileDirectory)" />
7272
</Target>
7373
<ItemGroup>
74-
<PackageReference Include="NLog" Version="6.0.0" />
74+
<PackageReference Include="NLog" Version="6.0.1" />
7575
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
7676
</ItemGroup>
7777
<ItemGroup>

0 commit comments

Comments
 (0)