Skip to content

Commit

Permalink
Update dependencies from https://github.com/dotnet/arcade build 20231…
Browse files Browse the repository at this point in the history
…103.1 (#2300)
  • Loading branch information
dotnet-maestro[bot] committed Nov 6, 2023
1 parent 43a52d5 commit 1fd229d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
12 changes: 6 additions & 6 deletions eng/Version.Details.xml
Expand Up @@ -3,17 +3,17 @@
<ProductDependencies>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.23528.2">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.23553.1">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>bb2b4326ddf03d86c92bd125dba87e9d8df63463</Sha>
<Sha>1f067970472e5eb1877797bc4304dd13f284c7ba</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.23528.2">
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.23553.1">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>bb2b4326ddf03d86c92bd125dba87e9d8df63463</Sha>
<Sha>1f067970472e5eb1877797bc4304dd13f284c7ba</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="9.0.0-beta.23528.2">
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="9.0.0-beta.23553.1">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>bb2b4326ddf03d86c92bd125dba87e9d8df63463</Sha>
<Sha>1f067970472e5eb1877797bc4304dd13f284c7ba</Sha>
</Dependency>
</ToolsetDependencies>
</Dependencies>
2 changes: 1 addition & 1 deletion eng/Versions.props
Expand Up @@ -14,6 +14,6 @@
<PropertyGroup>
<SystemCollectionsImmutableVersion>8.0.0-rc.1.23419.4</SystemCollectionsImmutableVersion>
<MicrosoftBclTimeProviderVersion>8.0.0-rc.1.23419.4</MicrosoftBclTimeProviderVersion>
<MicrosoftDotNetXUnitExtensionsPackageVersion>9.0.0-beta.23528.2</MicrosoftDotNetXUnitExtensionsPackageVersion>
<MicrosoftDotNetXUnitExtensionsPackageVersion>9.0.0-beta.23553.1</MicrosoftDotNetXUnitExtensionsPackageVersion>
</PropertyGroup>
</Project>
7 changes: 6 additions & 1 deletion eng/common/tools.sh
Expand Up @@ -341,7 +341,12 @@ function InitializeBuildTool {
# return values
_InitializeBuildTool="$_InitializeDotNetCli/dotnet"
_InitializeBuildToolCommand="msbuild"
_InitializeBuildToolFramework="net8.0"
# use override if it exists - commonly set by source-build
if [[ "${_OverrideArcadeInitializeBuildToolFramework:-x}" == "x" ]]; then
_InitializeBuildToolFramework="net8.0"
else
_InitializeBuildToolFramework="${_OverrideArcadeInitializeBuildToolFramework}"
fi
}

# Set RestoreNoCache as a workaround for https://github.com/NuGet/Home/issues/3116
Expand Down
4 changes: 2 additions & 2 deletions global.json
Expand Up @@ -16,7 +16,7 @@
}
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.23528.2",
"Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.23528.2"
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.23553.1",
"Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.23553.1"
}
}

0 comments on commit 1fd229d

Please sign in to comment.