diff --git a/NuGet.config b/NuGet.config
index b258f815f5f2eb..9c77e9437dd4b1 100644
--- a/NuGet.config
+++ b/NuGet.config
@@ -9,7 +9,7 @@
-
+
- 7.0.11
+ 7.0.12
7
0
- 11
+ 12
7.0.100
6.0.$([MSBuild]::Add($(PatchVersion), 11))
servicing
@@ -22,8 +22,8 @@
false
false
$(AssemblyVersion)
- 7.0.11
- 7.0.11
+ 7.0.12
+ 7.0.12
diff --git a/eng/pipelines/coreclr/perf-non-wasm-jobs.yml b/eng/pipelines/coreclr/perf-non-wasm-jobs.yml
index 39a8b0527b1e78..9a60000c79d08a 100644
--- a/eng/pipelines/coreclr/perf-non-wasm-jobs.yml
+++ b/eng/pipelines/coreclr/perf-non-wasm-jobs.yml
@@ -314,4 +314,4 @@ jobs:
projectFile: crossgen_perf.proj
runKind: crossgen_scenarios
runJobTemplate: /eng/pipelines/coreclr/templates/run-scenarios-job.yml
- logicalmachine: 'perftiger'
+ logicalmachine: 'perftiger_crossgen'
\ No newline at end of file
diff --git a/eng/testing/performance/performance-setup.ps1 b/eng/testing/performance/performance-setup.ps1
index 1590b5f1e36d09..bd67e15fecdc9a 100644
--- a/eng/testing/performance/performance-setup.ps1
+++ b/eng/testing/performance/performance-setup.ps1
@@ -46,9 +46,10 @@ $Queue = ""
if ($Internal) {
switch ($LogicalMachine) {
- "perftiger" { $Queue = "Windows.10.Amd64.19H1.Tiger.Perf" }
- "perfowl" { $Queue = "Windows.10.Amd64.20H2.Owl.Perf" }
- "perfsurf" { $Queue = "Windows.10.Arm64.Perf.Surf" }
+ "perftiger" { $Queue = "Windows.10.Amd64.19H1.Tiger.Perf" }
+ "perftiger_crossgen" { $Queue = "Windows.10.Amd64.19H1.Tiger.Perf" }
+ "perfowl" { $Queue = "Windows.10.Amd64.20H2.Owl.Perf" }
+ "perfsurf" { $Queue = "Windows.10.Arm64.Perf.Surf" }
"perfpixel4a" { $Queue = "Windows.10.Amd64.Pixel.Perf" }
"perfampere" { $Queue = "Windows.Server.Arm64.Perf" }
Default { $Queue = "Windows.10.Amd64.19H1.Tiger.Perf" }
diff --git a/eng/testing/performance/performance-setup.sh b/eng/testing/performance/performance-setup.sh
index 5af80ba888d62c..09e3a5980eec5f 100755
--- a/eng/testing/performance/performance-setup.sh
+++ b/eng/testing/performance/performance-setup.sh
@@ -253,8 +253,10 @@ if [[ "$internal" == true ]]; then
else
if [[ "$logical_machine" == "perfowl" ]]; then
queue=Ubuntu.1804.Amd64.Owl.Perf
- else
+ elif [[ "$logical_machine" == "perftiger_crossgen" ]]; then
queue=Ubuntu.1804.Amd64.Tiger.Perf
+ else
+ queue=Ubuntu.2204.Amd64.Tiger.Perf
fi
fi