forked from x64-dev/GenLauncher_GO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
20 lines (18 loc) · 902 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
20 lines (18 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project>
<PropertyGroup>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<AnalysisLevel>latest</AnalysisLevel>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition="$([System.String]::Copy('$(MSBuildProjectName)').StartsWith('GenLauncherGO.')) == 'true' and '$(MSBuildProjectName)' != 'GenLauncherGO.Tests'">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<WarningsAsErrors>$(WarningsAsErrors);CS1591</WarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="$([System.String]::Copy('$(MSBuildProjectName)').StartsWith('GenLauncherGO.')) == 'true'">
<WarningsAsErrors>$(WarningsAsErrors);IDE1006</WarningsAsErrors>
</PropertyGroup>
</Project>