-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
24 lines (21 loc) · 1.01 KB
/
Copy pathDirectory.Build.props
File metadata and controls
24 lines (21 loc) · 1.01 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
<Project>
<!--
Directory.Build.props — enforced project-wide MSBuild defaults.
Applied automatically to every project under this directory by MSBuild.
Individual .csproj files must NOT duplicate these properties.
-->
<PropertyGroup>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- Silence informational-only MSBuild messages that are not actionable warnings -->
<NoWarn>$(NoWarn)</NoWarn>
<!--
Git-driven versioning was configured here (MinVerTagPrefix / MinVerDefaultPreReleasePhase)
but MinVer was never referenced by any project, so the properties configured a package that
was not in the build and no version was ever produced from a tag. Removed rather than left
as a setting that looks load-bearing: to actually get tag-driven versions, add MinVer to
Directory.Packages.props and a PackageReference in the projects that should carry it.
-->
</PropertyGroup>
</Project>