We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9710503 commit 713fc92Copy full SHA for 713fc92
src/ClassLib.csproj
@@ -1,10 +1,13 @@
1
<Project Sdk="Microsoft.NET.Sdk">
2
3
<PropertyGroup>
4
- <TargetFramework>netstandard2.0</TargetFramework>
+ <TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
5
<LangVersion>12.0</LangVersion>
6
<Nullable>enable</Nullable>
7
8
+ <IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">true</IsTrimmable>
9
+ <IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">true</IsAotCompatible>
10
+
11
<!-- Package stuff -->
12
<PackageLicenseExpression>MIT</PackageLicenseExpression>
13
<PackageLicenseFile Condition="$(PackageLicenseExpression) == ''">LICENSE</PackageLicenseFile>
0 commit comments