-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
18 lines (16 loc) · 768 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
18 lines (16 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project>
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<WarningLevel>6</WarningLevel>
<AnalysisLevel>latest</AnalysisLevel>
<!-- Strip the build machine's absolute source paths from PDBs so shipped
stack traces show /InfoPanel/... instead of /home/<user>/... -->
<Deterministic>true</Deterministic>
<PathMap>$(MSBuildThisFileDirectory)=/InfoPanel/</PathMap>
<!-- SourceLink would re-embed the local checkout path (and points at the
wrong remote); stack traces only need the mapped paths above -->
<EnableSourceLink>false</EnableSourceLink>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
</PropertyGroup>
</Project>