Browse Source

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

Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.SwaggerGenerator.MSBuild
 From Version 7.0.0-beta.22327.2 -> To Version 7.0.0-beta.22369.9
pull/1428/head
dotnet-maestro[bot] 4 years ago
parent
commit
b44f7b2da7
  1. 20
      eng/Version.Details.xml
  2. 2
      eng/common/generate-sbom-prep.ps1
  3. 12
      eng/common/generate-sbom-prep.sh
  4. 2
      global.json

20
eng/Version.Details.xml

@ -3,25 +3,25 @@
<ProductDependencies>
</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>
</Dependency>
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="7.0.0-beta.22368.5">
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" 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.SignTool" Version="7.0.0-beta.22368.5">
<Dependency Name="Microsoft.DotNet.SignTool" 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.Helix.Sdk" Version="7.0.0-beta.22368.5">
<Dependency Name="Microsoft.DotNet.Helix.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.SwaggerGenerator.MSBuild" Version="7.0.0-beta.22368.5">
<Dependency Name="Microsoft.DotNet.SwaggerGenerator.MSBuild" 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.Maestro.Client" Version="1.1.0-beta.19556.4">
<Uri>https://github.com/dotnet/arcade-services</Uri>

2
eng/common/generate-sbom-prep.ps1

@ -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))

12
eng/common/generate-sbom-prep.sh

@ -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

2
global.json

@ -14,6 +14,6 @@
}
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.22368.5"
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.22369.9"
}
}

Loading…
Cancel
Save