Update dependencies from https://github.com/dotnet/arcade build 20220719.9

Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.CMake.Sdk
 From Version 7.0.0-beta.22368.5 -> To Version 7.0.0-beta.22369.9

Dependency coherency updates

Microsoft.SourceLink.GitHub,Microsoft.DotNet.XliffTasks
 From Version 1.2.0-beta-22367-01 -> To Version 1.2.0-beta-22368-02 (parent: Microsoft.DotNet.Arcade.Sdk
This commit is contained in:
dotnet-maestro[bot] 2022-07-20 12:40:03 +00:00
parent 580f5ee557
commit 2d4c5adaeb
5 changed files with 27 additions and 13 deletions

View file

@ -196,32 +196,32 @@
</Dependency>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="7.0.0-beta.22368.5">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="7.0.0-beta.22369.9">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>6bf3e1d9cd29fe839be38a4c051aa307cf96f5d0</Sha>
<Sha>cda764613f89280de6d5c5383ebded9ac01ebd00</Sha>
<SourceBuild RepoName="arcade" ManagedOnly="true" />
</Dependency>
<Dependency Name="Microsoft.DotNet.CMake.Sdk" Version="7.0.0-beta.22368.5">
<Dependency Name="Microsoft.DotNet.CMake.Sdk" Version="7.0.0-beta.22369.9">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>6bf3e1d9cd29fe839be38a4c051aa307cf96f5d0</Sha>
<Sha>cda764613f89280de6d5c5383ebded9ac01ebd00</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="7.0.0-beta.22368.5">
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="7.0.0-beta.22369.9">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>6bf3e1d9cd29fe839be38a4c051aa307cf96f5d0</Sha>
<Sha>cda764613f89280de6d5c5383ebded9ac01ebd00</Sha>
</Dependency>
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="7.0.0-alpha.1.22368.3">
<Uri>https://github.com/dotnet/source-build-reference-packages</Uri>
<Sha>b8e944de468738df9371be30d2a5232c33649260</Sha>
<SourceBuildTarball RepoName="source-build-reference-packages" ManagedOnly="true" />
</Dependency>
<Dependency Name="Microsoft.SourceLink.GitHub" Version="1.2.0-beta-22367-01" CoherentParentDependency="Microsoft.DotNet.Arcade.Sdk">
<Dependency Name="Microsoft.SourceLink.GitHub" Version="1.2.0-beta-22368-02" CoherentParentDependency="Microsoft.DotNet.Arcade.Sdk">
<Uri>https://github.com/dotnet/sourcelink</Uri>
<Sha>2e8b1dd7716350c00f19fc595fa311685c470f44</Sha>
<Sha>57d3d6cd128003a178af2b63927ae791d12ddaa1</Sha>
<SourceBuild RepoName="sourcelink" ManagedOnly="true" />
</Dependency>
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="1.0.0-beta.22366.1" CoherentParentDependency="Microsoft.DotNet.Arcade.Sdk">
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="1.0.0-beta.22368.1" CoherentParentDependency="Microsoft.DotNet.Arcade.Sdk">
<Uri>https://github.com/dotnet/xliff-tasks</Uri>
<Sha>42614f0262512a0d0d03c2a41098f15a66b60ada</Sha>
<Sha>634a41204a6e4f91dcc5eb1bd6dfa426f99bfb08</Sha>
<SourceBuild RepoName="xliff-tasks" ManagedOnly="true" />
</Dependency>
</ToolsetDependencies>

View file

@ -26,7 +26,7 @@
</PropertyGroup>
<PropertyGroup>
<!-- Dependency from https://github.com/dotnet/arcade -->
<MicrosoftDotNetBuildTasksInstallersPackageVersion>7.0.0-beta.22368.5</MicrosoftDotNetBuildTasksInstallersPackageVersion>
<MicrosoftDotNetBuildTasksInstallersPackageVersion>7.0.0-beta.22369.9</MicrosoftDotNetBuildTasksInstallersPackageVersion>
</PropertyGroup>
<PropertyGroup>
<!-- Dependency from https://github.com/dotnet/winforms -->

View file

@ -2,6 +2,8 @@ Param(
[Parameter(Mandatory=$true)][string] $ManifestDirPath # Manifest directory where sbom will be placed
)
. $PSScriptRoot\pipeline-logging-functions.ps1
Write-Host "Creating dir $ManifestDirPath"
# create directory for sbom manifest to be placed
if (!(Test-Path -path $ManifestDirPath))

View file

@ -2,6 +2,18 @@
source="${BASH_SOURCE[0]}"
# resolve $SOURCE until the file is no longer a symlink
while [[ -h $source ]]; do
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
source="$(readlink "$source")"
# if $source was a relative symlink, we need to resolve it relative to the path where the
# symlink file was located
[[ $source != /* ]] && source="$scriptroot/$source"
done
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
. $scriptroot/pipeline-logging-functions.sh
manifest_dir=$1
if [ ! -d "$manifest_dir" ] ; then

View file

@ -11,7 +11,7 @@
"cmake": "3.16.4"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.22368.5",
"Microsoft.DotNet.CMake.Sdk": "7.0.0-beta.22368.5"
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.22369.9",
"Microsoft.DotNet.CMake.Sdk": "7.0.0-beta.22369.9"
}
}