11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
3- <TargetFrameworks >net462;netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks >
3+ <TargetFrameworks >net462;netstandard2.0;netstandard2.1;net6.0;net8.0;net10.0 </TargetFrameworks >
44 <DebugType Condition =" '$(Configuration)' == 'Debug' " >Full</DebugType >
55
66 <Product >NLog.Extensions.Logging v$(ProductVersion)</Product >
@@ -18,9 +18,7 @@ For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
1818 <PackageReleaseNotes >
1919ChangeLog:
2020
21- - [#817] Updated to NLog v6.0.6 (@snakefoot)
22- - [#814] Avoid boxing ITuple when used for BeginScope (@snakefoot)
23- - [#813] Allow BeginScope to perform reflection of KeyValuePair (@snakefoot)
21+ - [#818] Added TargetFramework .NET 10
2422
2523Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD
2624
@@ -67,6 +65,9 @@ List of major changes in NLog 6.0: https://nlog-project.org/2025/04/29/nlog-6-0-
6765 <PropertyGroup Condition =" '$(TargetFramework)' == 'net8.0' " >
6866 <Title >NLog.Extensions.Logging for .NET 8</Title >
6967 </PropertyGroup >
68+ <PropertyGroup Condition =" '$(TargetFramework)' == 'net10.0' " >
69+ <Title >NLog.Extensions.Logging for .NET 10</Title >
70+ </PropertyGroup >
7071 <PropertyGroup >
7172 <AssemblyTitle >$(Title)</AssemblyTitle >
7273 </PropertyGroup >
@@ -96,6 +97,10 @@ List of major changes in NLog 6.0: https://nlog-project.org/2025/04/29/nlog-6-0-
9697 <PackageReference Include =" Microsoft.Extensions.Logging" Version =" 8.0.0" />
9798 <PackageReference Include =" Microsoft.Extensions.Configuration.Abstractions" Version =" 8.0.0" />
9899 </ItemGroup >
100+ <ItemGroup Condition =" '$(TargetFramework)' == 'net10.0' " >
101+ <PackageReference Include =" Microsoft.Extensions.Logging" Version =" 10.0.0" />
102+ <PackageReference Include =" Microsoft.Extensions.Configuration.Abstractions" Version =" 10.0.0" />
103+ </ItemGroup >
99104
100105 <Target Name =" DownloadMissingContent" BeforeTargets =" GenerateNuspec" >
101106 <DownloadFile SourceUrl =" https://nlog-project.org/N.png" DestinationFolder =" $(MSBuildThisFileDirectory)" />
0 commit comments