diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index 8e160ebe80..2ec35030a1 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -127,5 +127,21 @@
https://github.com/dotnet/arcade
c7f03b2cf06bdfc64dad4140fd0d486127095cd8
+
+ https://github.com/dotnet/arcade
+ c7f03b2cf06bdfc64dad4140fd0d486127095cd8
+
+
+ https://github.com/dotnet/arcade
+ c7f03b2cf06bdfc64dad4140fd0d486127095cd8
+
+
+ https://github.com/dotnet/arcade
+ c7f03b2cf06bdfc64dad4140fd0d486127095cd8
+
+
+ https://github.com/dotnet/sourcelink
+
+
diff --git a/eng/Versions.props b/eng/Versions.props
index d909297513..9417a407a1 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -36,9 +36,11 @@
- 1.0.0-beta.19308.1
- 2.2.0-beta.19410.2
- 1.0.0-beta.19308.1
+ 2.2.0-beta.19422.24
+ 1.0.0-beta.19422.24
+ 1.0.0-beta.19422.24
+
+ 1.0.0-beta2-19367-01
5.0.0-alpha1.19409.9
5.0.0-alpha1.19409.9
@@ -85,8 +87,6 @@
4.9.4
1.0.5
1.7.0
-
- 1.0.0-beta2-18618-05
diff --git a/eng/jobs/steps/upload-job-artifacts.yml b/eng/jobs/steps/upload-job-artifacts.yml
index 776b284b21..8b9e42f6ae 100644
--- a/eng/jobs/steps/upload-job-artifacts.yml
+++ b/eng/jobs/steps/upload-job-artifacts.yml
@@ -8,7 +8,9 @@ steps:
displayName: Prepare job-specific Artifacts subdirectory
inputs:
SourceFolder: '$(Build.SourcesDirectory)/artifacts/packages/$(_BuildConfig)'
- Contents: '**/*'
+ Contents: |
+ Shipping/**/*
+ NonShipping/**/*
TargetFolder: '$(Build.StagingDirectory)/Artifacts/${{ parameters.name }}'
CleanTargetFolder: true
condition: and(succeeded(), eq(variables._BuildConfig, 'Release'))
diff --git a/src/test/Microsoft.DotNet.CoreSetup.Packaging.Tests/NuGetArtifactTester.cs b/src/test/Microsoft.DotNet.CoreSetup.Packaging.Tests/NuGetArtifactTester.cs
index 421311d8e8..b46b78150f 100644
--- a/src/test/Microsoft.DotNet.CoreSetup.Packaging.Tests/NuGetArtifactTester.cs
+++ b/src/test/Microsoft.DotNet.CoreSetup.Packaging.Tests/NuGetArtifactTester.cs
@@ -36,8 +36,8 @@ public static NuGetArtifactTester OpenOrNull(
id = id ?? project;
string nuspecPath = Path.Combine(
- dirs.BaseBinFolder,
- project,
+ dirs.BaseArtifactsFolder,
+ "packages",
dirs.Configuration,
"specs",
$"{id}.nuspec");