Browse Source

Update dependencies from https://github.com/dotnet/arcade build 20230503.5 (#1584)

[main] Update dependencies from dotnet/arcade
pull/1586/head
dotnet-maestro[bot] 3 years ago
committed by GitHub
parent
commit
82174a3a7e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      eng/Version.Details.xml
  2. 3
      eng/common/tools.ps1
  3. 2
      global.json

20
eng/Version.Details.xml

@ -3,25 +3,25 @@
<ProductDependencies>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23253.3">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23253.5">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>5c98e75aa0078eebd3b8f9d6a6fbed1a1a5eb075</Sha>
<Sha>39d795a2d83c7ee351a26c4544f5352e62e30da1</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="8.0.0-beta.23253.3">
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="8.0.0-beta.23253.5">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>5c98e75aa0078eebd3b8f9d6a6fbed1a1a5eb075</Sha>
<Sha>39d795a2d83c7ee351a26c4544f5352e62e30da1</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.23253.3">
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.23253.5">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>5c98e75aa0078eebd3b8f9d6a6fbed1a1a5eb075</Sha>
<Sha>39d795a2d83c7ee351a26c4544f5352e62e30da1</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.23253.3">
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.23253.5">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>5c98e75aa0078eebd3b8f9d6a6fbed1a1a5eb075</Sha>
<Sha>39d795a2d83c7ee351a26c4544f5352e62e30da1</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.SwaggerGenerator.MSBuild" Version="8.0.0-beta.23253.3">
<Dependency Name="Microsoft.DotNet.SwaggerGenerator.MSBuild" Version="8.0.0-beta.23253.5">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>5c98e75aa0078eebd3b8f9d6a6fbed1a1a5eb075</Sha>
<Sha>39d795a2d83c7ee351a26c4544f5352e62e30da1</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Maestro.Client" Version="1.1.0-beta.19556.4">
<Uri>https://github.com/dotnet/arcade-services</Uri>

3
eng/common/tools.ps1

@ -399,7 +399,8 @@ function InitializeVisualStudioMSBuild([bool]$install, [object]$vsRequirements =
# Locate Visual Studio installation or download x-copy msbuild.
$vsInfo = LocateVisualStudio $vsRequirements
if ($vsInfo -ne $null) {
$vsInstallDir = $vsInfo.installationPath
# Ensure vsInstallDir has a trailing slash
$vsInstallDir = Join-Path $vsInfo.installationPath "\"
$vsMajorVersion = $vsInfo.installationVersion.Split('.')[0]
InitializeVisualStudioEnvironmentVariables $vsInstallDir $vsMajorVersion

2
global.json

@ -14,6 +14,6 @@
}
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23253.3"
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23253.5"
}
}

Loading…
Cancel
Save