|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 | <PropertyGroup>
|
3 |
| - <TargetFrameworks>net461;netstandard1.3;netstandard1.5;netstandard2.0;netcoreapp3.1;net5.0</TargetFrameworks> |
| 3 | + <TargetFrameworks>net461;netstandard1.3;netstandard1.5;netstandard2.0;netstandard2.1;net6.0</TargetFrameworks> |
4 | 4 | <DebugType Condition=" '$(Configuration)' == 'Debug' ">Full</DebugType>
|
5 | 5 | <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
6 | 6 | <GenerateDocumentationFile>true</GenerateDocumentationFile>
|
@@ -57,12 +57,12 @@ List of major changes in NLog 5.0: https://nlog-project.org/2021/08/25/nlog-5-0-
|
57 | 57 | <Title>NLog.Extensions.Logging for .NET Standard 2.0</Title>
|
58 | 58 | <DefineConstants>$(DefineConstants);NETSTANDARD</DefineConstants>
|
59 | 59 | </PropertyGroup>
|
60 |
| - <PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1' "> |
61 |
| - <Title>NLog.Extensions.Logging for .NET Core 3.1</Title> |
| 60 | + <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.1' "> |
| 61 | + <Title>NLog.Extensions.Logging for .NET Standard 2.1</Title> |
62 | 62 | <DefineConstants>$(DefineConstants);NETSTANDARD</DefineConstants>
|
63 | 63 | </PropertyGroup>
|
64 |
| - <PropertyGroup Condition=" '$(TargetFramework)' == 'net5.0' "> |
65 |
| - <Title>NLog.Extensions.Logging for .NET 5.0</Title> |
| 64 | + <PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0' "> |
| 65 | + <Title>NLog.Extensions.Logging for .NET 6</Title> |
66 | 66 | <DefineConstants>$(DefineConstants);NETSTANDARD</DefineConstants>
|
67 | 67 | </PropertyGroup>
|
68 | 68 | <PropertyGroup>
|
@@ -91,13 +91,13 @@ List of major changes in NLog 5.0: https://nlog-project.org/2021/08/25/nlog-5-0-
|
91 | 91 | <PackageReference Include="Microsoft.Extensions.Logging" Version="2.1.0" />
|
92 | 92 | <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="2.1.0" />
|
93 | 93 | </ItemGroup>
|
94 |
| - <ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1' "> |
| 94 | + <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.1' "> |
95 | 95 | <PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.0" />
|
96 | 96 | <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="3.1.0" />
|
97 | 97 | </ItemGroup>
|
98 |
| - <ItemGroup Condition=" '$(TargetFramework)' == 'net5.0' "> |
99 |
| - <PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" /> |
100 |
| - <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="5.0.0" /> |
| 98 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' "> |
| 99 | + <PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" /> |
| 100 | + <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" /> |
101 | 101 | </ItemGroup>
|
102 | 102 |
|
103 | 103 | <ItemGroup>
|
|
0 commit comments