-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
19 lines (19 loc) · 871 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
19 lines (19 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project>
<PropertyGroup>
<TargetFrameworks>net10.0;net9.0</TargetFrameworks>
<UseArtifactsOutput>true</UseArtifactsOutput>
<IsTrimmable>true</IsTrimmable>
<LangVersion>preview</LangVersion>
<Authors>aossss@gmail.com</Authors>
<Company>aossss@gmail.com</Company>
<Copyright>© $(Authors), $([System.DateTime]::UtcNow.Year)</Copyright>
<Version>2.0.0</Version>
<AnalysisLevel>latest-All</AnalysisLevel>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<WarningsAsErrors>Nullable</WarningsAsErrors>
<ImplicitUsings>true</ImplicitUsings>
<EnablePreviewFeatures>true</EnablePreviewFeatures>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">true</IsAotCompatible>
</PropertyGroup>
</Project>