Skip to content

Commit bdf1bec

Browse files
author
dotnet-automerge-bot
authored
Merge pull request #6696 from microsoft/merges/master-to-dev16.2
Merge master to dev16.2
2 parents 8cc3c7e + 4034f53 commit bdf1bec

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

eng/Version.Details.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<ProductDependencies>
44
</ProductDependencies>
55
<ToolsetDependencies>
6-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19252.2">
6+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19255.2">
77
<Uri>https://github.com/dotnet/arcade</Uri>
8-
<Sha>ed63a7faf2d119829dd971be91bb46b6ebaa1dd2</Sha>
8+
<Sha>6a34948f7bdbc3ceb2fb16441b49f7748a462646</Sha>
99
</Dependency>
1010
</ToolsetDependencies>
1111
</Dependencies>

eng/common/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ try {
122122
. $configureToolsetScript
123123
}
124124

125-
if ($restore) {
125+
if (($restore) -and ($null -eq $env:DisableNativeToolsetInstalls)) {
126126
InitializeNativeTools
127127
}
128128

eng/common/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ if [[ -n "${useInstalledDotNetCli:-}" ]]; then
218218
use_installed_dotnet_cli="$useInstalledDotNetCli"
219219
fi
220220

221-
if [[ "$restore" == true ]]; then
221+
if [[ "$restore" == true && -z ${DisableNativeToolsetInstalls:-} ]]; then
222222
InitializeNativeTools
223223
fi
224224

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
},
1212
"msbuild-sdks": {
13-
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19252.2",
13+
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19255.2",
1414
"Microsoft.DotNet.Helix.Sdk": "2.0.0-beta.19069.2"
1515
}
1616
}

0 commit comments

Comments
 (0)