Skip to content

Commit

Permalink
[wasm] Use latest stable version of chrome (dotnet#85114)
Browse files Browse the repository at this point in the history
  • Loading branch information
radical committed Apr 27, 2023
1 parent b53f2ca commit 8c1e75c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions eng/testing/ProvisioningVersions.props
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,18 @@
these snapshot urls.
-->

<PropertyGroup Label="Use specific version of chrome" Condition="$([MSBuild]::IsOSPlatform('linux'))">
<PropertyGroup>
<!-- To use a specific version, set ChromeUseLatestVersion=false,
and set the version, and revisions in the propertygroup below -->
<ChromeUseLatestVersion>true</ChromeUseLatestVersion>
</PropertyGroup>

<PropertyGroup Label="Use specific version of chrome" Condition="'$(ChromeUseLatestVersion)' != 'true' and $([MSBuild]::IsOSPlatform('linux'))">
<ChromeVersion>109.0.5414.119</ChromeVersion>
<ChromeRevision>1070088</ChromeRevision>
<_ChromeBaseSnapshotUrl>https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64/1070096</_ChromeBaseSnapshotUrl>
</PropertyGroup>
<PropertyGroup Label="Use specific version of chrome" Condition="$([MSBuild]::IsOSPlatform('windows'))">
<PropertyGroup Label="Use specific version of chrome" Condition="'$(ChromeUseLatestVersion)' != 'true' and $([MSBuild]::IsOSPlatform('windows'))">
<ChromeVersion>109.0.5414.120</ChromeVersion>
<ChromeRevision>1070088</ChromeRevision>
<_ChromeBaseSnapshotUrl>https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1070094</_ChromeBaseSnapshotUrl>
Expand Down

0 comments on commit 8c1e75c

Please sign in to comment.