-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
28 lines (24 loc) · 994 Bytes
/
Directory.Build.props
File metadata and controls
28 lines (24 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!---
SPDX-FileCopyrightText: © 2021 Victor Derks
SPDX-License-Identifier: MIT
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- General -->
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<Features>strict</Features>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Build -->
<UseArtifactsOutput>true</UseArtifactsOutput>
<!-- Static Analysis -->
<AnalysisLevel>latest-All</AnalysisLevel>
<AnalysisMode>AllEnabledByDefault</AnalysisMode> <!-- Enable all CAxxx code quality rules -->
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
</Project>