-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (22 loc) · 934 Bytes
/
Directory.Build.props
File metadata and controls
26 lines (22 loc) · 934 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<!-- Be strict with warnings -->
<MSBuildTreatWarningsAsErrors>true</MSBuildTreatWarningsAsErrors>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- Enabled the built-in analyzers -->
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<!--
Disabling for now as it seems to cause the compiler to throw exceptions all of a sudden.
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
-->
<AnalysisMode>All</AnalysisMode>
<!-- To enable IDE0005 -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Use artifacts output layout (https://learn.microsoft.com/en-us/dotnet/core/sdk/artifacts-output) -->
<UseArtifactsOutput>true</UseArtifactsOutput>
<LangVersion>Preview</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>