Skip to content

[manual] Merge release/8.0-staging into release/8.0 #114661

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 25 commits into from
Apr 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
13eabb4
backport #113432 (#113479)
antonfirsov Mar 14, 2025
5a1fc27
[release/8.0][browser][http] mute JS exceptions about network errors…
pavelsavara Mar 17, 2025
cc4c5be
[8.0] Update Ubuntu pipelines from 18.04 to 22.04 (#113441)
carlossanlop Mar 18, 2025
3ace3f7
[release/8.0-staging] Support setting ACLs on file paths longer than …
github-actions[bot] Mar 23, 2025
b790a33
[release/8.0-staging] remove extra assert from WinHttp handler (#112861)
github-actions[bot] Mar 27, 2025
281540d
[release/8.0-staging] Send connection WINDOW_UPDATE before RTT PING (…
antonfirsov Mar 28, 2025
23edb79
[release/8.0] Test failure - SendAsync_RequestVersion20_ResponseVersi…
github-actions[bot] Mar 31, 2025
42c903e
Merge pull request #113448 from dotnet/merge/release/8.0-to-release/8…
carlossanlop Apr 2, 2025
0e5a3e4
Update dependencies from https://github.com/dotnet/xharness build 202…
dotnet-maestro[bot] Apr 2, 2025
886a104
Bring back yml necessary change types in label checkers (#114167)
carlossanlop Apr 2, 2025
11f0c2e
Update dependencies from https://github.com/dotnet/hotreload-utils bu…
dotnet-maestro[bot] Apr 3, 2025
febc186
[release/8.0-staging] Update dependencies from dotnet/runtime-assets …
dotnet-maestro[bot] Apr 3, 2025
d7a2497
Revert "[release/8.0] Disable tests targetting http://corefx-net-http…
rzikm Apr 4, 2025
5738cb8
[release/8.0-staging] Fix build break with cmake 4.0 (#114279)
akoeplinger Apr 4, 2025
c2511b3
Merge pull request #114223 from dotnet/merge/release/8.0-to-release/8…
carlossanlop Apr 7, 2025
aae9ccd
Fix inadvertently upgrading compiler warnings to errors (#114335)
akoeplinger Apr 8, 2025
29db7c7
Merge pull request #114414 from dotnet/merge/release/8.0-to-release/8…
carlossanlop Apr 8, 2025
e480259
[release/8.0-staging] Remove reference / redistribution of externally…
ericstj Apr 9, 2025
7d69f1c
Move DAC signing identity to PME (#114032)
github-actions[bot] Apr 11, 2025
48f343c
Update dependencies from https://github.com/dotnet/xharness build 202…
dotnet-maestro[bot] Apr 11, 2025
c8070f7
Update dependencies from https://github.com/dotnet/runtime-assets bui…
dotnet-maestro[bot] Apr 11, 2025
8690dbe
[release/8.0-staging] JIT: Fix loop recognition bug in .NET 8 (#114457)
AndyAyersMS Apr 12, 2025
a57a83d
Update dependencies from https://github.com/dotnet/runtime-assets bui…
dotnet-maestro[bot] Apr 14, 2025
86bc73f
[release/8.0-staging] Update dependencies from dotnet/hotreload-utils…
dotnet-maestro[bot] Apr 14, 2025
aacb60f
Turn off packages that are not being released in the May Release.
carlossanlop Apr 14, 2025
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 .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
]
},
"microsoft.dotnet.xharness.cli": {
"version": "8.0.0-prerelease.25103.2",
"version": "8.0.0-prerelease.25207.2",
"commands": [
"xharness"
]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-no-merge-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ permissions:

on:
pull_request_target:
types: [opened, reopened, labeled, unlabeled]
types: [opened, edited, reopened, labeled, unlabeled, synchronize]
branches:
- 'main'
- 'release/**'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-service-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ permissions:

on:
pull_request_target:
types: [opened, reopened, labeled, unlabeled]
types: [opened, edited, reopened, labeled, unlabeled, synchronize]
branches:
- 'release/**'

Expand Down
33 changes: 33 additions & 0 deletions eng/PackageDownloadAndReference.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<Project>

<!-- This file supports using PackageDownloadAndReference items.
The PackageDownloadAndReference item is used to download a package and reference it in the project, without restoring the package's dependency closure.
When using PackageDownloadAndReference you are responsible for selecting the correct assets from the package and ensuring that the package and it's
dependencies are available at runtime.
The PackageDownloadAndReference item has the following metadata:
- Folder: The folder in the package where the assembly is located.
- AssemblyName: The name of the assembly to reference.
- Private: Whether the reference should be private (copied to the output directory) or not. Default is false.
A common use case for PackageDownloadAndReference is to reference assemblies provided by MSBuild or the .NET SDK.
-->

<ItemDefinitionGroup>
<PackageDownloadAndReference>
<Folder>lib/$(TargetFramework)</Folder>
<AssemblyName>%(Identity)</AssemblyName>
<Private>false</Private>
</PackageDownloadAndReference>
</ItemDefinitionGroup>

<ItemGroup>
<PackageDownload Include="@(PackageDownloadAndReference)" />
<PackageDownload Update="@(PackageDownloadAndReference)" Version="[%(Version)]"/>
<PackageDownloadAndReference Update="@(PackageDownloadAndReference)" PackageFolder="$([System.String]::new(%(Identity)).ToLowerInvariant())" />
<Reference Include="@(PackageDownloadAndReference->'$(NuGetPackageRoot)%(PackageFolder)/%(Version)/%(Folder)/%(AssemblyName).dll')" />
</ItemGroup>

</Project>
72 changes: 36 additions & 36 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -185,57 +185,57 @@
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>802042c6e779b73b4edb012ee1d5bae02ec8d41c</Sha>
</Dependency>
<Dependency Name="System.ComponentModel.TypeConverter.TestData" Version="8.0.0-beta.25113.1">
<Dependency Name="System.ComponentModel.TypeConverter.TestData" Version="8.0.0-beta.25211.2">
<Uri>https://github.com/dotnet/runtime-assets</Uri>
<Sha>88293463a34f5451d8a01b77b292b059bcacc3e4</Sha>
<Sha>611d6c8595694c9755c9f0cc36ae6018c4c15143</Sha>
</Dependency>
<Dependency Name="System.Data.Common.TestData" Version="8.0.0-beta.25113.1">
<Dependency Name="System.Data.Common.TestData" Version="8.0.0-beta.25211.2">
<Uri>https://github.com/dotnet/runtime-assets</Uri>
<Sha>88293463a34f5451d8a01b77b292b059bcacc3e4</Sha>
<Sha>611d6c8595694c9755c9f0cc36ae6018c4c15143</Sha>
</Dependency>
<Dependency Name="System.Drawing.Common.TestData" Version="8.0.0-beta.25113.1">
<Dependency Name="System.Drawing.Common.TestData" Version="8.0.0-beta.25211.2">
<Uri>https://github.com/dotnet/runtime-assets</Uri>
<Sha>88293463a34f5451d8a01b77b292b059bcacc3e4</Sha>
<Sha>611d6c8595694c9755c9f0cc36ae6018c4c15143</Sha>
</Dependency>
<Dependency Name="System.Formats.Tar.TestData" Version="8.0.0-beta.25113.1">
<Dependency Name="System.Formats.Tar.TestData" Version="8.0.0-beta.25211.2">
<Uri>https://github.com/dotnet/runtime-assets</Uri>
<Sha>88293463a34f5451d8a01b77b292b059bcacc3e4</Sha>
<Sha>611d6c8595694c9755c9f0cc36ae6018c4c15143</Sha>
</Dependency>
<Dependency Name="System.IO.Compression.TestData" Version="8.0.0-beta.25113.1">
<Dependency Name="System.IO.Compression.TestData" Version="8.0.0-beta.25211.2">
<Uri>https://github.com/dotnet/runtime-assets</Uri>
<Sha>88293463a34f5451d8a01b77b292b059bcacc3e4</Sha>
<Sha>611d6c8595694c9755c9f0cc36ae6018c4c15143</Sha>
</Dependency>
<Dependency Name="System.IO.Packaging.TestData" Version="8.0.0-beta.25113.1">
<Dependency Name="System.IO.Packaging.TestData" Version="8.0.0-beta.25211.2">
<Uri>https://github.com/dotnet/runtime-assets</Uri>
<Sha>88293463a34f5451d8a01b77b292b059bcacc3e4</Sha>
<Sha>611d6c8595694c9755c9f0cc36ae6018c4c15143</Sha>
</Dependency>
<Dependency Name="System.Net.TestData" Version="8.0.0-beta.25113.1">
<Dependency Name="System.Net.TestData" Version="8.0.0-beta.25211.2">
<Uri>https://github.com/dotnet/runtime-assets</Uri>
<Sha>88293463a34f5451d8a01b77b292b059bcacc3e4</Sha>
<Sha>611d6c8595694c9755c9f0cc36ae6018c4c15143</Sha>
</Dependency>
<Dependency Name="System.Private.Runtime.UnicodeData" Version="8.0.0-beta.25113.1">
<Dependency Name="System.Private.Runtime.UnicodeData" Version="8.0.0-beta.25211.2">
<Uri>https://github.com/dotnet/runtime-assets</Uri>
<Sha>88293463a34f5451d8a01b77b292b059bcacc3e4</Sha>
<Sha>611d6c8595694c9755c9f0cc36ae6018c4c15143</Sha>
</Dependency>
<Dependency Name="System.Runtime.TimeZoneData" Version="8.0.0-beta.25113.1">
<Dependency Name="System.Runtime.TimeZoneData" Version="8.0.0-beta.25211.2">
<Uri>https://github.com/dotnet/runtime-assets</Uri>
<Sha>88293463a34f5451d8a01b77b292b059bcacc3e4</Sha>
<Sha>611d6c8595694c9755c9f0cc36ae6018c4c15143</Sha>
</Dependency>
<Dependency Name="System.Security.Cryptography.X509Certificates.TestData" Version="8.0.0-beta.25113.1">
<Dependency Name="System.Security.Cryptography.X509Certificates.TestData" Version="8.0.0-beta.25211.2">
<Uri>https://github.com/dotnet/runtime-assets</Uri>
<Sha>88293463a34f5451d8a01b77b292b059bcacc3e4</Sha>
<Sha>611d6c8595694c9755c9f0cc36ae6018c4c15143</Sha>
</Dependency>
<Dependency Name="System.Text.RegularExpressions.TestData" Version="8.0.0-beta.25113.1">
<Dependency Name="System.Text.RegularExpressions.TestData" Version="8.0.0-beta.25211.2">
<Uri>https://github.com/dotnet/runtime-assets</Uri>
<Sha>88293463a34f5451d8a01b77b292b059bcacc3e4</Sha>
<Sha>611d6c8595694c9755c9f0cc36ae6018c4c15143</Sha>
</Dependency>
<Dependency Name="System.Windows.Extensions.TestData" Version="8.0.0-beta.25113.1">
<Dependency Name="System.Windows.Extensions.TestData" Version="8.0.0-beta.25211.2">
<Uri>https://github.com/dotnet/runtime-assets</Uri>
<Sha>88293463a34f5451d8a01b77b292b059bcacc3e4</Sha>
<Sha>611d6c8595694c9755c9f0cc36ae6018c4c15143</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.CilStrip.Sources" Version="8.0.0-beta.25113.1">
<Dependency Name="Microsoft.DotNet.CilStrip.Sources" Version="8.0.0-beta.25211.2">
<Uri>https://github.com/dotnet/runtime-assets</Uri>
<Sha>88293463a34f5451d8a01b77b292b059bcacc3e4</Sha>
<Sha>611d6c8595694c9755c9f0cc36ae6018c4c15143</Sha>
</Dependency>
<Dependency Name="runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk" Version="16.0.5-alpha.1.24362.2" CoherentParentDependency="Microsoft.NET.Workload.Emscripten.Current.Manifest-8.0.100">
<Uri>https://github.com/dotnet/llvm-project</Uri>
Expand Down Expand Up @@ -322,17 +322,17 @@
<Uri>https://github.com/dotnet/runtime</Uri>
<Sha>edbd5c769a19798b6955050baccf99e6797d3208</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.XHarness.TestRunners.Common" Version="8.0.0-prerelease.25103.2">
<Dependency Name="Microsoft.DotNet.XHarness.TestRunners.Common" Version="8.0.0-prerelease.25207.2">
<Uri>https://github.com/dotnet/xharness</Uri>
<Sha>d33548342ade8e537d891c8f0f593aa206418625</Sha>
<Sha>6dbf15dc48cde2bde6f62811ba73241b067b3683</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.XHarness.TestRunners.Xunit" Version="8.0.0-prerelease.25103.2">
<Dependency Name="Microsoft.DotNet.XHarness.TestRunners.Xunit" Version="8.0.0-prerelease.25207.2">
<Uri>https://github.com/dotnet/xharness</Uri>
<Sha>d33548342ade8e537d891c8f0f593aa206418625</Sha>
<Sha>6dbf15dc48cde2bde6f62811ba73241b067b3683</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.XHarness.CLI" Version="8.0.0-prerelease.25103.2">
<Dependency Name="Microsoft.DotNet.XHarness.CLI" Version="8.0.0-prerelease.25207.2">
<Uri>https://github.com/dotnet/xharness</Uri>
<Sha>d33548342ade8e537d891c8f0f593aa206418625</Sha>
<Sha>6dbf15dc48cde2bde6f62811ba73241b067b3683</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.PackageTesting" Version="8.0.0-beta.25164.5">
<Uri>https://github.com/dotnet/arcade</Uri>
Expand All @@ -354,13 +354,13 @@
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-optimization</Uri>
<Sha>67613417f5e1af250e6ddfba79f8f2885d8e90fb</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.HotReload.Utils.Generator.BuildTool" Version="8.0.0-alpha.0.25124.2">
<Dependency Name="Microsoft.DotNet.HotReload.Utils.Generator.BuildTool" Version="8.0.0-alpha.0.25214.2">
<Uri>https://github.com/dotnet/hotreload-utils</Uri>
<Sha>232793be175603f21989ca3be5dbe53dc41fc96d</Sha>
<Sha>2dd1cedb9d30de03b034d3856c33a2cdf5f42b6c</Sha>
</Dependency>
<Dependency Name="System.Runtime.Numerics.TestData" Version="8.0.0-beta.25113.1">
<Dependency Name="System.Runtime.Numerics.TestData" Version="8.0.0-beta.25211.2">
<Uri>https://github.com/dotnet/runtime-assets</Uri>
<Sha>88293463a34f5451d8a01b77b292b059bcacc3e4</Sha>
<Sha>611d6c8595694c9755c9f0cc36ae6018c4c15143</Sha>
</Dependency>
<Dependency Name="Microsoft.Net.Compilers.Toolset" Version="4.8.0-7.23566.2">
<Uri>https://github.com/dotnet/roslyn</Uri>
Expand Down
48 changes: 29 additions & 19 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -136,29 +136,37 @@
<SystemSecurityCryptographyOpenSslVersion>5.0.0</SystemSecurityCryptographyOpenSslVersion>
<SystemSecurityPrincipalWindowsVersion>5.0.0</SystemSecurityPrincipalWindowsVersion>
<SystemSecurityPermissionsVersion>7.0.0</SystemSecurityPermissionsVersion>
<!-- The JSON version that's present in minimum MSBuild / VS version that this release is supported on -->
<!-- The following package versions are present in minimum MSBuild / VS version that this release is supported on -->
<MicrosoftBclAsyncInterfacesToolsetVersion>7.0.0</MicrosoftBclAsyncInterfacesToolsetVersion>
<SystemBuffersToolsetVersion>4.5.1</SystemBuffersToolsetVersion>
<SystemCollectionsImmutableToolsetVersion>7.0.0</SystemCollectionsImmutableToolsetVersion>
<SystemMemoryToolsetVersion>4.5.5</SystemMemoryToolsetVersion>
<SystemReflectionMetadataLoadContextToolsetVersion>7.0.0</SystemReflectionMetadataLoadContextToolsetVersion>
<SystemReflectionMetadataToolsetVersion>7.0.0</SystemReflectionMetadataToolsetVersion>
<SystemTextEncodingsWebToolsetVersion>7.0.0</SystemTextEncodingsWebToolsetVersion>
<SystemTextJsonToolsetVersion>7.0.3</SystemTextJsonToolsetVersion>
<SystemThreadingTasksExtensionsToolsetVersion>4.5.4</SystemThreadingTasksExtensionsToolsetVersion>
<SystemTextJsonVersion>8.0.0-rc.1.23406.6</SystemTextJsonVersion>
<SystemRuntimeCompilerServicesUnsafeVersion>6.0.0</SystemRuntimeCompilerServicesUnsafeVersion>
<SystemThreadingAccessControlVersion>7.0.0</SystemThreadingAccessControlVersion>
<SystemThreadingTasksExtensionsVersion>4.5.4</SystemThreadingTasksExtensionsVersion>
<SystemValueTupleVersion>4.5.0</SystemValueTupleVersion>
<runtimenativeSystemIOPortsVersion>8.0.0-rc.1.23406.6</runtimenativeSystemIOPortsVersion>
<!-- Runtime-Assets dependencies -->
<SystemRuntimeNumericsTestDataVersion>8.0.0-beta.25113.1</SystemRuntimeNumericsTestDataVersion>
<SystemComponentModelTypeConverterTestDataVersion>8.0.0-beta.25113.1</SystemComponentModelTypeConverterTestDataVersion>
<SystemDataCommonTestDataVersion>8.0.0-beta.25113.1</SystemDataCommonTestDataVersion>
<SystemDrawingCommonTestDataVersion>8.0.0-beta.25113.1</SystemDrawingCommonTestDataVersion>
<SystemFormatsTarTestDataVersion>8.0.0-beta.25113.1</SystemFormatsTarTestDataVersion>
<SystemIOCompressionTestDataVersion>8.0.0-beta.25113.1</SystemIOCompressionTestDataVersion>
<SystemIOPackagingTestDataVersion>8.0.0-beta.25113.1</SystemIOPackagingTestDataVersion>
<SystemNetTestDataVersion>8.0.0-beta.25113.1</SystemNetTestDataVersion>
<SystemPrivateRuntimeUnicodeDataVersion>8.0.0-beta.25113.1</SystemPrivateRuntimeUnicodeDataVersion>
<SystemRuntimeTimeZoneDataVersion>8.0.0-beta.25113.1</SystemRuntimeTimeZoneDataVersion>
<SystemSecurityCryptographyX509CertificatesTestDataVersion>8.0.0-beta.25113.1</SystemSecurityCryptographyX509CertificatesTestDataVersion>
<SystemTextRegularExpressionsTestDataVersion>8.0.0-beta.25113.1</SystemTextRegularExpressionsTestDataVersion>
<SystemWindowsExtensionsTestDataVersion>8.0.0-beta.25113.1</SystemWindowsExtensionsTestDataVersion>
<MicrosoftDotNetCilStripSourcesVersion>8.0.0-beta.25113.1</MicrosoftDotNetCilStripSourcesVersion>
<SystemRuntimeNumericsTestDataVersion>8.0.0-beta.25211.2</SystemRuntimeNumericsTestDataVersion>
<SystemComponentModelTypeConverterTestDataVersion>8.0.0-beta.25211.2</SystemComponentModelTypeConverterTestDataVersion>
<SystemDataCommonTestDataVersion>8.0.0-beta.25211.2</SystemDataCommonTestDataVersion>
<SystemDrawingCommonTestDataVersion>8.0.0-beta.25211.2</SystemDrawingCommonTestDataVersion>
<SystemFormatsTarTestDataVersion>8.0.0-beta.25211.2</SystemFormatsTarTestDataVersion>
<SystemIOCompressionTestDataVersion>8.0.0-beta.25211.2</SystemIOCompressionTestDataVersion>
<SystemIOPackagingTestDataVersion>8.0.0-beta.25211.2</SystemIOPackagingTestDataVersion>
<SystemNetTestDataVersion>8.0.0-beta.25211.2</SystemNetTestDataVersion>
<SystemPrivateRuntimeUnicodeDataVersion>8.0.0-beta.25211.2</SystemPrivateRuntimeUnicodeDataVersion>
<SystemRuntimeTimeZoneDataVersion>8.0.0-beta.25211.2</SystemRuntimeTimeZoneDataVersion>
<SystemSecurityCryptographyX509CertificatesTestDataVersion>8.0.0-beta.25211.2</SystemSecurityCryptographyX509CertificatesTestDataVersion>
<SystemTextRegularExpressionsTestDataVersion>8.0.0-beta.25211.2</SystemTextRegularExpressionsTestDataVersion>
<SystemWindowsExtensionsTestDataVersion>8.0.0-beta.25211.2</SystemWindowsExtensionsTestDataVersion>
<MicrosoftDotNetCilStripSourcesVersion>8.0.0-beta.25211.2</MicrosoftDotNetCilStripSourcesVersion>
<!-- dotnet-optimization dependencies -->
<optimizationwindows_ntx64MIBCRuntimeVersion>1.0.0-prerelease.23566.3</optimizationwindows_ntx64MIBCRuntimeVersion>
<optimizationwindows_ntx86MIBCRuntimeVersion>1.0.0-prerelease.23566.3</optimizationwindows_ntx86MIBCRuntimeVersion>
Expand All @@ -178,17 +186,19 @@
<MicrosoftBuildTasksCoreVersion>$(MicrosoftBuildVersion)</MicrosoftBuildTasksCoreVersion>
<MicrosoftBuildFrameworkVersion>$(MicrosoftBuildVersion)</MicrosoftBuildFrameworkVersion>
<MicrosoftBuildUtilitiesCoreVersion>$(MicrosoftBuildVersion)</MicrosoftBuildUtilitiesCoreVersion>
<NugetFrameworksVersion>6.2.4</NugetFrameworksVersion>
<NugetProjectModelVersion>6.2.4</NugetProjectModelVersion>
<NugetPackagingVersion>6.2.4</NugetPackagingVersion>
<NugetVersioningVersion>6.2.4</NugetVersioningVersion>
<DotnetSosVersion>7.0.412701</DotnetSosVersion>
<DotnetSosTargetFrameworkVersion>6.0</DotnetSosTargetFrameworkVersion>
<!-- Testing -->
<MicrosoftNETCoreCoreDisToolsVersion>1.1.0</MicrosoftNETCoreCoreDisToolsVersion>
<MicrosoftNETTestSdkVersion>17.4.0-preview-20220707-01</MicrosoftNETTestSdkVersion>
<MicrosoftDotNetXHarnessTestRunnersCommonVersion>8.0.0-prerelease.25103.2</MicrosoftDotNetXHarnessTestRunnersCommonVersion>
<MicrosoftDotNetXHarnessTestRunnersXunitVersion>8.0.0-prerelease.25103.2</MicrosoftDotNetXHarnessTestRunnersXunitVersion>
<MicrosoftDotNetXHarnessCLIVersion>8.0.0-prerelease.25103.2</MicrosoftDotNetXHarnessCLIVersion>
<MicrosoftDotNetHotReloadUtilsGeneratorBuildToolVersion>8.0.0-alpha.0.25124.2</MicrosoftDotNetHotReloadUtilsGeneratorBuildToolVersion>
<MicrosoftDotNetXHarnessTestRunnersCommonVersion>8.0.0-prerelease.25207.2</MicrosoftDotNetXHarnessTestRunnersCommonVersion>
<MicrosoftDotNetXHarnessTestRunnersXunitVersion>8.0.0-prerelease.25207.2</MicrosoftDotNetXHarnessTestRunnersXunitVersion>
<MicrosoftDotNetXHarnessCLIVersion>8.0.0-prerelease.25207.2</MicrosoftDotNetXHarnessCLIVersion>
<MicrosoftDotNetHotReloadUtilsGeneratorBuildToolVersion>8.0.0-alpha.0.25214.2</MicrosoftDotNetHotReloadUtilsGeneratorBuildToolVersion>
<XUnitVersion>2.4.2</XUnitVersion>
<XUnitAnalyzersVersion>1.0.0</XUnitAnalyzersVersion>
<XUnitRunnerVisualStudioVersion>2.4.5</XUnitRunnerVisualStudioVersion>
Expand Down
4 changes: 2 additions & 2 deletions eng/pipelines/common/xplat-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: _BuildConfig
value: $(buildConfigUpper)

- name: archType
value: ${{ parameters.archType }}

Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
# Public Linux Build Pool
${{ if and(or(in(parameters.osGroup, 'linux', 'freebsd', 'android', 'tizen'), eq(parameters.jobParameters.hostedOs, 'linux')), eq(variables['System.TeamProject'], 'public')) }}:
name: $(DncEngPublicBuildPool)
demands: ImageOverride -equals Build.Ubuntu.1804.Amd64.Open
demands: ImageOverride -equals Build.Ubuntu.2204.Amd64.Open

# Official Build Linux Pool
${{ if and(or(in(parameters.osGroup, 'linux', 'freebsd', 'android', 'tizen'), eq(parameters.jobParameters.hostedOs, 'linux')), ne(variables['System.TeamProject'], 'public')) }}:
Expand Down
6 changes: 3 additions & 3 deletions eng/pipelines/coreclr/templates/helix-queues-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

# Browser wasm
- ${{ if eq(parameters.platform, 'browser_wasm') }}:
- (Ubuntu.1804.Amd64)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-webassembly
- (Ubuntu.2204.Amd64)[email protected]/dotnet-buildtools/prereqs:ubuntu-22.04-helix-webassembly

# iOS devices
- ${{ if in(parameters.platform, 'ios_arm64') }}:
Expand All @@ -65,9 +65,9 @@ jobs:
# Linux arm
- ${{ if eq(parameters.platform, 'linux_arm') }}:
- ${{ if eq(variables['System.TeamProject'], 'public') }}:
- (Ubuntu.1804.Arm32.Open)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm32v7
- (Ubuntu.2204.Arm32.Open)[email protected]/dotnet-buildtools/prereqs:ubuntu-22.04-helix-arm32v7
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
- (Ubuntu.1804.Arm32)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm32v7
- (Ubuntu.2204.Arm32)[email protected]/dotnet-buildtools/prereqs:ubuntu-22.04-helix-arm32v7

# Linux arm64
- ${{ if eq(parameters.platform, 'linux_arm64') }}:
Expand Down
12 changes: 6 additions & 6 deletions eng/pipelines/coreclr/templates/sign-diagnostic-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ steps:
- task: EsrpCodeSigning@5
displayName: Sign Diagnostic Binaries
inputs:
ConnectedServiceName: 'diagnostics-esrp-kvcertuser'
AppRegistrationClientId: '2234cdec-a13f-4bb2-aa63-04c57fd7a1f9'
AppRegistrationTenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47'
AuthAKVName: 'clrdiag-esrp-id'
AuthCertName: 'dotnetesrp-diagnostics-aad-ssl-cert'
AuthSignCertName: 'dotnet-diagnostics-esrp-pki-onecert'
ConnectedServiceName: 'diagnostics-esrp-kvcertuser-pme'
AppRegistrationClientId: '22346933-af99-4e94-97d5-7fa1dcf4bba6'
AppRegistrationTenantId: '975f013f-7f24-47e8-a7d3-abc4752bf346'
AuthAKVName: 'clrdiag-esrp-pme'
AuthCertName: 'dac-dnceng-ssl-cert'
AuthSignCertName: 'dac-dnceng-esrpclient-cert'
FolderPath: ${{ parameters.basePath }}
Pattern: |
**/mscordaccore*.dll
Expand Down
Loading
Loading