Skip to content

Commit

Permalink
Use wildcard to resolve S.P.CoreLib from CoreCLRArtifacts (#878)
Browse files Browse the repository at this point in the history
* Use wildcard to resolve S.P.CoreLib from CoreCLRArtifacts

* Probe 2 paths instead
  • Loading branch information
safern committed Dec 15, 2019
1 parent a3029cb commit 57df202
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion eng/liveBuilds.targets
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@
<CoreCLRFiles>
<IsNative>true</IsNative>
</CoreCLRFiles>
<CoreCLRFiles Include="$(CoreCLRArtifactsPath)System.Private.CoreLib.dll" />
<_systemPrivateCoreLib Include="$(CoreCLRArtifactsPath)System.Private.CoreLib.dll"
Condition="Exists('$(CoreCLRArtifactsPath)System.Private.CoreLib.dll')" />
<_systemPrivateCoreLib Include="$(CoreCLRArtifactsPath)IL/System.Private.CoreLib.dll"
Condition="Exists('$(CoreCLRArtifactsPath)IL/System.Private.CoreLib.dll') and '@(_systemPrivateCoreLib)' == ''" />
<CoreCLRFiles Include="@(_systemPrivateCoreLib)" />
<CoreCLRFiles
Include="
$(CoreCLRSharedFrameworkDir)PDB/*.pdb;
Expand Down

0 comments on commit 57df202

Please sign in to comment.