File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
installer/pkg/sfx/Microsoft.NETCore.App
native/managed/cdac/mscordaccore_universal Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,12 @@ extends:
4646 isOfficialBuild : ${{ variables.isOfficialBuild }}
4747 timeoutInMinutes : 360
4848 postBuildSteps :
49+ # The cDAC is not included in the runtime pack, so we need to copy it into the testhost directory
4950 - powershell : |
51+ $cdacPath = Get-ChildItem -Path "$(Build.SourcesDirectory)\artifacts\bin\coreclr\*\mscordaccore_universal.dll" | Select-Object -ExpandProperty FullName
52+ $outputDacDir = Get-ChildItem -Directory -Path "$(Build.SourcesDirectory)\artifacts\bin\testhost\net*\shared\Microsoft.NETCore.App\*" | Select-Object -ExpandProperty FullName
53+ Copy-Item $cdacPath -Destination $outputDacDir
54+ Write-Host "Copied $cdacPath to $outputDacDir"
5055 $versionDir = Get-ChildItem -Directory -Path "$(Build.SourcesDirectory)\artifacts\bin\testhost\net*\shared\Microsoft.NETCore.App" | Select-Object -ExpandProperty FullName
5156 Write-Host "##vso[task.setvariable variable=versionDir]$versionDir"
5257 displayName: 'Set Path to Shared Framework Artifacts'
Original file line number Diff line number Diff line change 115115 <PlatformManifestFileEntry Condition =" '$(PgoInstrument)' != ''" Include =" clrjit.pgd" IsNative =" true" />
116116 <PlatformManifestFileEntry Include =" libclrjit.so" IsNative =" true" />
117117 <PlatformManifestFileEntry Include =" libclrjit.dylib" IsNative =" true" />
118- <PlatformManifestFileEntry Include =" mscordaccore_universal.dll" IsNative =" true" />
119- <PlatformManifestFileEntry Include =" libmscordaccore_universal.so" IsNative =" true" />
120- <PlatformManifestFileEntry Include =" libmscordaccore_universal.dylib" IsNative =" true" />
121118 <PlatformManifestFileEntry Include =" mscordaccore.dll" IsNative =" true" />
122119 <PlatformManifestFileEntry Include =" libmscordaccore.so" IsNative =" true" />
123120 <PlatformManifestFileEntry Include =" libmscordaccore.dylib" IsNative =" true" />
Original file line number Diff line number Diff line change 2727 </ItemGroup >
2828 <ItemGroup >
2929 <InstallRuntimeComponentDestination Include =" ." />
30- <InstallRuntimeComponentDestination Include =" sharedFramework" Condition =" '$(RuntimeFlavor)' == 'coreclr'" />
30+ <!-- TODO: [cdac] Output to sharedFramework and add PlatformManifestFileEntry for Microsoft.NETCore.App once ready to include in shipping package -->
31+ <!-- <InstallRuntimeComponentDestination Include="sharedFramework" Condition="'$(RuntimeFlavor)' == 'coreclr'"/> -->
3132 </ItemGroup >
3233
3334 <ItemGroup >
You can’t perform that action at this time.
0 commit comments