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 c497ca7 commit 96c1315Copy full SHA for 96c1315
src/ExCSS/ExCSS.csproj
@@ -33,11 +33,15 @@
33
34
<!-- Trimming parameters -->
35
<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">
36
- <IsAotCompatible>true</IsAotCompatible>
37
<IsTrimmable>true</IsTrimmable>
38
<SuppressTrimAnalysisWarnings>false</SuppressTrimAnalysisWarnings>
39
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
40
</PropertyGroup>
+ <!-- AOT parameters -->
41
+ <PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">
42
+ <IsAotCompatible>true</IsAotCompatible>
43
+ <EnableAotAnalyzer>true</EnableAotAnalyzer>
44
+ </PropertyGroup>
45
46
<PropertyGroup Condition="'$(TargetFramework)' != ''">
47
<LangVersion>9.0</LangVersion>
0 commit comments