Remove supposed optimization of local builds
- minor issue uncovered while investigating #7073 - sourcelink speed has significantly improved lately - removing this enables local builds that are a closer match to CI configuration
This commit is contained in:
parent
6c80c42511
commit
e8236a5365
|
|
@ -59,11 +59,9 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<SharedSourceRoot>$(MSBuildThisFileDirectory)src\Shared\</SharedSourceRoot>
|
<SharedSourceRoot>$(MSBuildThisFileDirectory)src\Shared\</SharedSourceRoot>
|
||||||
<GoogleTestSubmoduleRoot>$(RepoRoot)src\submodules\googletest\</GoogleTestSubmoduleRoot>
|
<GoogleTestSubmoduleRoot>$(RepoRoot)src\submodules\googletest\</GoogleTestSubmoduleRoot>
|
||||||
|
|
||||||
<!-- Embed source files that are not tracked by the source control manager in the PDB. -->
|
<!-- Embed source files that are not tracked by the source control manager in the PDB. -->
|
||||||
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
||||||
|
|
||||||
<!-- Disable source link on local builds for faster local builds. -->
|
|
||||||
<EnableSourceLink Condition="'$(ContinuousIntegrationBuild)' != 'true' and '$(OfficialBuildId)' == ''">false</EnableSourceLink>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue