Skip to content

Commit e20af25

Browse files
Update dependencies from https://github.com/dotnet/arcade build 20230503.5
Microsoft.DotNet.Arcade.Sdk From Version 8.0.0-beta.23226.4 -> To Version 8.0.0-beta.23253.5
1 parent 29a0dd6 commit e20af25

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

eng/Version.Details.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
</Dependency>
88
</ProductDependencies>
99
<ToolsetDependencies>
10-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23253.3">
10+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23253.5">
1111
<Uri>https://github.com/dotnet/arcade</Uri>
12-
<Sha>5c98e75aa0078eebd3b8f9d6a6fbed1a1a5eb075</Sha>
12+
<Sha>39d795a2d83c7ee351a26c4544f5352e62e30da1</Sha>
1313
<SourceBuild RepoName="arcade" ManagedOnly="true" />
1414
</Dependency>
1515
<Dependency Name="Microsoft.Net.Compilers.Toolset" Version="4.5.0">

eng/common/tools.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,8 @@ function InitializeVisualStudioMSBuild([bool]$install, [object]$vsRequirements =
399399
# Locate Visual Studio installation or download x-copy msbuild.
400400
$vsInfo = LocateVisualStudio $vsRequirements
401401
if ($vsInfo -ne $null) {
402-
$vsInstallDir = $vsInfo.installationPath
402+
# Ensure vsInstallDir has a trailing slash
403+
$vsInstallDir = Join-Path $vsInfo.installationPath "\"
403404
$vsMajorVersion = $vsInfo.installationVersion.Split('.')[0]
404405

405406
InitializeVisualStudioEnvironmentVariables $vsInstallDir $vsMajorVersion

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
"rollForward": "patch"
1919
},
2020
"msbuild-sdks": {
21-
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23253.3"
21+
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23253.5"
2222
}
2323
}

0 commit comments

Comments
 (0)