-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
22 lines (21 loc) · 971 Bytes
/
Directory.Build.props
File metadata and controls
22 lines (21 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<!-- Latest features -->
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<!-- Turn on all the analysis -->
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<!-- Use the top level for the artifacts directory -->
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
<!-- Default GoaAutoGenerateExtensions to true -->
<GoaAutoGenerateExtensions Condition="'$(GoaAutoGenerateExtensions)' == ''">true</GoaAutoGenerateExtensions>
</PropertyGroup>
<!-- Make GoaAutoGenerateExtensions visible to the source generator -->
<ItemGroup>
<CompilerVisibleProperty Include="GoaAutoGenerateExtensions" />
</ItemGroup>
</Project>