Prechádzať zdrojové kódy

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

Doug Bunting 6 rokov pred
rodič
commit
e8236a5365
1 zmenil súbory, kde vykonal 1 pridanie a 3 odobranie
  1. 1 3
      Directory.Build.props

+ 1 - 3
Directory.Build.props

@@ -59,11 +59,9 @@
   <PropertyGroup>
     <SharedSourceRoot>$(MSBuildThisFileDirectory)src\Shared\</SharedSourceRoot>
     <GoogleTestSubmoduleRoot>$(RepoRoot)src\submodules\googletest\</GoogleTestSubmoduleRoot>
+
     <!-- Embed source files that are not tracked by the source control manager in the PDB. -->
     <EmbedUntrackedSources>true</EmbedUntrackedSources>
-
-    <!-- Disable source link on local builds for faster local builds. -->
-    <EnableSourceLink Condition="'$(ContinuousIntegrationBuild)' != 'true' and '$(OfficialBuildId)' == ''">false</EnableSourceLink>
   </PropertyGroup>
 
   <PropertyGroup>