-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
25 lines (21 loc) · 933 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
25 lines (21 loc) · 933 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
<Project>
<!--
Repo-wide MSBuild defaults. Imported automatically by every .csproj
under this directory, ahead of the project's own settings.
-->
<PropertyGroup>
<!--
Activate the globalization analyzer category (CA1304/05/10/11)
across every project. AnalysisModeGlobalization=All is a category-
scoped override that flips the rules on without dragging in every
other CA category the way <AnalysisLevel> would. .editorconfig at
the repo root then sets CA1305 severity to error so any new
ToString / Parse / string.Format / $"…" without an IFormatProvider
breaks the build.
See CONTRIBUTING.md → "Persisted numeric/date strings" for the
"why" — comma-decimal locales (fi-FI etc.) silently corrupted
Field.txt on disk before this fence existed.
-->
<AnalysisModeGlobalization>All</AnalysisModeGlobalization>
</PropertyGroup>
</Project>