-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
22 lines (19 loc) · 906 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
22 lines (19 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<!-- Universal MSBuild base for every C# project in the repo. Game references
live only in build/GameReferences.props, imported solely by the two net472
game-coupled plugins, which is what lets CI build without the game. -->
<PropertyGroup>
<RepoRoot>$([MSBuild]::EnsureTrailingSlash('$(MSBuildThisFileDirectory)'))</RepoRoot>
<Lib>$(RepoRoot)lib</Lib>
<LangVersion>latest</LangVersion>
<Nullable>disable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<MSBuildWarningsAsMessages>MSB3277</MSBuildWarningsAsMessages>
<Deterministic>true</Deterministic>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup Condition="'$(IsTestProject)' == 'true'">
<PackageReference Include="coverlet.collector" Version="6.0.2" />
</ItemGroup>
</Project>