Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eng/pipelines/runtime-linker-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
jobTemplate: /eng/pipelines/common/global-build-job.yml
buildConfig: release
platforms:
# - Windows_NT_x64
- Windows_NT_x64
- OSX_x64
- Linux_x64
jobParameters:
Expand Down
16 changes: 14 additions & 2 deletions src/libraries/pretest.proj
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,9 @@
<ItemGroup>
<_refPackLibFile Include="$(MicrosoftNetCoreAppRefPackRefDir)*.*">
<TargetPath>ref/$(NetCoreAppCurrent)</TargetPath>
<IsSymbolFile Condition="$([System.String]::Copy('%(Identity)').EndsWith('pdb'))">true</IsSymbolFile>
</_refPackLibFile>
<_runtimePackLibFiles Include="$(MicrosoftNetCoreAppRuntimePackRidLibTfmDir)*.*">
<TargetPath>runtimes/$(PackageRID)/lib/$(NetCoreAppCurrent)</TargetPath>
<IsSymbolFile Condition="$([System.String]::Copy('%(Identity)').EndsWith('pdb'))">true</IsSymbolFile>
</_runtimePackLibFiles>
<_runtimePackNativeFiles Include="$(MicrosoftNetCoreAppRuntimePackNativeDir)*.*">
<TargetPath>runtimes/$(PackageRID)/native</TargetPath>
Expand All @@ -106,6 +104,20 @@
<FrameworkListRootAttributes Include="FrameworkName" Value="$(SharedFrameworkName)" />
</ItemGroup>

<!-- We need to set this metadata in a separate ItemGroup than when the Items are initially populated in order to
have access to the Extension metadata. -->
<ItemGroup>
<_refPackLibFile>
<IsSymbolFile Condition="'%(Extension)' == '.pdb'">true</IsSymbolFile>
</_refPackLibFile>
<_runtimePackLibFiles>
<IsSymbolFile Condition="'%(Extension)' == '.pdb'">true</IsSymbolFile>
</_runtimePackLibFiles>
<_runtimePackNativeFiles>
<IsSymbolFile Condition="'%(Extension)' == '.pdb'">true</IsSymbolFile>
</_runtimePackNativeFiles>
</ItemGroup>

<CreateFrameworkListFile Files="@(_refPackLibFile)"
TargetFile="$(MicrosoftNetCoreAppRefPackDataDir)FrameworkList.xml"
TargetFilePrefixes="ref/;runtimes/"
Expand Down