-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
23 lines (19 loc) · 905 Bytes
/
Directory.Build.props
File metadata and controls
23 lines (19 loc) · 905 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>true</ImplicitUsings>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<Configuration Condition="$(Configuration) == ''">Debug</Configuration>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
<NoWarn>$(NoWarn);CS8509;IDE0039;IDE0130;IDE0290;IDE0060;RZ10012;IDE0052;BL0007;</NoWarn>
<WarningsAsErrors>$(WarningsAsErrors);RZ2012;</WarningsAsErrors>
<ArtifactsPath>$([System.IO.Path]::Combine(
$(MSBuildThisFileDirectory),
"artifacts",
$([MSBuild]::MakeRelative($(MSBuildThisFileDirectory),$(MSBuildProjectDirectory)).Replace("$(MSBuildProjectName)", '').TrimEnd('/'))
))</ArtifactsPath>
<UseArtifactsOutput>true</UseArtifactsOutput>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
</Project>