-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
32 lines (26 loc) · 1.09 KB
/
Copy pathDirectory.Build.props
File metadata and controls
32 lines (26 loc) · 1.09 KB
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
29
30
31
32
<Project>
<!--
Root-level MSBuild defaults applied to every csproj under this directory.
Keep this minimal: project-specific knobs stay in their own csproj.
-->
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<!--
Analyzer adoption is incremental. We start with the default analyzer set
(built into the .NET 8 SDK) and graduate to AnalysisLevel=latest-recommended
once the existing 800+ CA warnings have been resolved or explicitly silenced.
-->
<AnalysisLevel>latest</AnalysisLevel>
<!--
Locally warnings stay non-blocking. CI sets /warnaserror via the workflow
(see .github/workflows/ci.yml) so genuine compiler warnings fail the build
while leaving room for in-progress local edits.
-->
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<!-- CS1591 = missing XML doc on public member. We don't doc legacy endpoints. -->
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
</Project>