Microsoft.DotNet.Arcade.Sdk
 From Version 7.0.0-beta.22124.1 -> To Version 7.0.0-beta.22372.1
This commit is contained in:
dotnet-maestro[bot] 2022-07-25 12:32:04 +00:00
Родитель f42ab92aed
Коммит c12c7441a3
4 изменённых файлов: 17 добавлений и 3 удалений

Просмотреть файл

@ -3,9 +3,9 @@
<ProductDependencies>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="7.0.0-beta.22367.1">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="7.0.0-beta.22372.1">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>f7951a64db920ea599bd6819065b661d88d26b23</Sha>
<Sha>11672d906390046e77a34b6406d9e02229fd7e45</Sha>
</Dependency>
</ToolsetDependencies>
</Dependencies>

Просмотреть файл

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

Просмотреть файл

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

Просмотреть файл

@ -3,6 +3,6 @@
"dotnet": "7.0.100-preview.5.22307.18"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.22367.1"
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.22372.1"
}
}