-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
23 lines (20 loc) · 857 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
23 lines (20 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsNotAsErrors>NU1901;NU1902;NU1903;NU1904</WarningsNotAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
<Deterministic>true</Deterministic>
<Authors>dotSync</Authors>
<Product>dotSync</Product>
<Version>0.1.0</Version>
</PropertyGroup>
<PropertyGroup>
<!-- Excluded so legacy/ is never picked up by `dotnet build` at root. -->
<DefaultItemExcludes>$(DefaultItemExcludes);legacy/**</DefaultItemExcludes>
</PropertyGroup>
</Project>