Update dependencies from https://github.com/dotnet/arcade build 20240308.1
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.CMake.Sdk From Version 8.0.0-beta.24156.1 -> To Version 8.0.0-beta.24158.1
This commit is contained in:
parent
4cb7c4b604
commit
554a285753
4 changed files with 22 additions and 22 deletions
|
@ -214,18 +214,18 @@
|
||||||
</Dependency>
|
</Dependency>
|
||||||
</ProductDependencies>
|
</ProductDependencies>
|
||||||
<ToolsetDependencies>
|
<ToolsetDependencies>
|
||||||
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.24156.1">
|
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.24158.1">
|
||||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||||
<Sha>1307d3e675219bf384f17764651f46767a07960b</Sha>
|
<Sha>334436593593431d9dfe13538a8f745f31b3dd59</Sha>
|
||||||
<SourceBuild RepoName="arcade" ManagedOnly="true" />
|
<SourceBuild RepoName="arcade" ManagedOnly="true" />
|
||||||
</Dependency>
|
</Dependency>
|
||||||
<Dependency Name="Microsoft.DotNet.CMake.Sdk" Version="8.0.0-beta.24156.1">
|
<Dependency Name="Microsoft.DotNet.CMake.Sdk" Version="8.0.0-beta.24158.1">
|
||||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||||
<Sha>1307d3e675219bf384f17764651f46767a07960b</Sha>
|
<Sha>334436593593431d9dfe13538a8f745f31b3dd59</Sha>
|
||||||
</Dependency>
|
</Dependency>
|
||||||
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="8.0.0-beta.24156.1">
|
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="8.0.0-beta.24158.1">
|
||||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||||
<Sha>1307d3e675219bf384f17764651f46767a07960b</Sha>
|
<Sha>334436593593431d9dfe13538a8f745f31b3dd59</Sha>
|
||||||
</Dependency>
|
</Dependency>
|
||||||
<Dependency Name="Microsoft.DotNet.Darc" Version="1.1.0-beta.24157.4">
|
<Dependency Name="Microsoft.DotNet.Darc" Version="1.1.0-beta.24157.4">
|
||||||
<Uri>https://github.com/dotnet/arcade-services</Uri>
|
<Uri>https://github.com/dotnet/arcade-services</Uri>
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- Dependency from https://github.com/dotnet/arcade -->
|
<!-- Dependency from https://github.com/dotnet/arcade -->
|
||||||
<MicrosoftDotNetBuildTasksInstallersPackageVersion>8.0.0-beta.24156.1</MicrosoftDotNetBuildTasksInstallersPackageVersion>
|
<MicrosoftDotNetBuildTasksInstallersPackageVersion>8.0.0-beta.24158.1</MicrosoftDotNetBuildTasksInstallersPackageVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- Dependency from https://github.com/dotnet/arcade-services -->
|
<!-- Dependency from https://github.com/dotnet/arcade-services -->
|
||||||
|
|
|
@ -35,7 +35,7 @@ Set-StrictMode -Version 2.0
|
||||||
. $PSScriptRoot\tools.ps1
|
. $PSScriptRoot\tools.ps1
|
||||||
|
|
||||||
# Add source entry to PackageSources
|
# Add source entry to PackageSources
|
||||||
function AddPackageSource($sources, $SourceName, $SourceEndPoint, $creds, $Username, $Password) {
|
function AddPackageSource($sources, $SourceName, $SourceEndPoint, $creds, $Username, $pwd) {
|
||||||
$packageSource = $sources.SelectSingleNode("add[@key='$SourceName']")
|
$packageSource = $sources.SelectSingleNode("add[@key='$SourceName']")
|
||||||
|
|
||||||
if ($packageSource -eq $null)
|
if ($packageSource -eq $null)
|
||||||
|
@ -48,12 +48,11 @@ function AddPackageSource($sources, $SourceName, $SourceEndPoint, $creds, $Usern
|
||||||
else {
|
else {
|
||||||
Write-Host "Package source $SourceName already present."
|
Write-Host "Package source $SourceName already present."
|
||||||
}
|
}
|
||||||
|
AddCredential -Creds $creds -Source $SourceName -Username $Username -pwd $pwd
|
||||||
AddCredential -Creds $creds -Source $SourceName -Username $Username -Password $Password
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Add a credential node for the specified source
|
# Add a credential node for the specified source
|
||||||
function AddCredential($creds, $source, $username, $password) {
|
function AddCredential($creds, $source, $username, $pwd) {
|
||||||
# Looks for credential configuration for the given SourceName. Create it if none is found.
|
# Looks for credential configuration for the given SourceName. Create it if none is found.
|
||||||
$sourceElement = $creds.SelectSingleNode($Source)
|
$sourceElement = $creds.SelectSingleNode($Source)
|
||||||
if ($sourceElement -eq $null)
|
if ($sourceElement -eq $null)
|
||||||
|
@ -82,17 +81,18 @@ function AddCredential($creds, $source, $username, $password) {
|
||||||
$passwordElement.SetAttribute("key", "ClearTextPassword")
|
$passwordElement.SetAttribute("key", "ClearTextPassword")
|
||||||
$sourceElement.AppendChild($passwordElement) | Out-Null
|
$sourceElement.AppendChild($passwordElement) | Out-Null
|
||||||
}
|
}
|
||||||
$passwordElement.SetAttribute("value", $Password)
|
|
||||||
|
$passwordElement.SetAttribute("value", $pwd)
|
||||||
}
|
}
|
||||||
|
|
||||||
function InsertMaestroPrivateFeedCredentials($Sources, $Creds, $Username, $Password) {
|
function InsertMaestroPrivateFeedCredentials($Sources, $Creds, $Username, $pwd) {
|
||||||
$maestroPrivateSources = $Sources.SelectNodes("add[contains(@key,'darc-int')]")
|
$maestroPrivateSources = $Sources.SelectNodes("add[contains(@key,'darc-int')]")
|
||||||
|
|
||||||
Write-Host "Inserting credentials for $($maestroPrivateSources.Count) Maestro's private feeds."
|
Write-Host "Inserting credentials for $($maestroPrivateSources.Count) Maestro's private feeds."
|
||||||
|
|
||||||
ForEach ($PackageSource in $maestroPrivateSources) {
|
ForEach ($PackageSource in $maestroPrivateSources) {
|
||||||
Write-Host "`tInserting credential for Maestro's feed:" $PackageSource.Key
|
Write-Host "`tInserting credential for Maestro's feed:" $PackageSource.Key
|
||||||
AddCredential -Creds $creds -Source $PackageSource.Key -Username $Username -Password $Password
|
AddCredential -Creds $creds -Source $PackageSource.Key -Username $Username -pwd $pwd
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -144,13 +144,13 @@ if ($disabledSources -ne $null) {
|
||||||
$userName = "dn-bot"
|
$userName = "dn-bot"
|
||||||
|
|
||||||
# Insert credential nodes for Maestro's private feeds
|
# Insert credential nodes for Maestro's private feeds
|
||||||
InsertMaestroPrivateFeedCredentials -Sources $sources -Creds $creds -Username $userName -Password $Password
|
InsertMaestroPrivateFeedCredentials -Sources $sources -Creds $creds -Username $userName -pwd $Password
|
||||||
|
|
||||||
# 3.1 uses a different feed url format so it's handled differently here
|
# 3.1 uses a different feed url format so it's handled differently here
|
||||||
$dotnet31Source = $sources.SelectSingleNode("add[@key='dotnet3.1']")
|
$dotnet31Source = $sources.SelectSingleNode("add[@key='dotnet3.1']")
|
||||||
if ($dotnet31Source -ne $null) {
|
if ($dotnet31Source -ne $null) {
|
||||||
AddPackageSource -Sources $sources -SourceName "dotnet3.1-internal" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3.1-internal/nuget/v2" -Creds $creds -Username $userName -Password $Password
|
AddPackageSource -Sources $sources -SourceName "dotnet3.1-internal" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3.1-internal/nuget/v2" -Creds $creds -Username $userName -pwd $Password
|
||||||
AddPackageSource -Sources $sources -SourceName "dotnet3.1-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3.1-internal-transport/nuget/v2" -Creds $creds -Username $userName -Password $Password
|
AddPackageSource -Sources $sources -SourceName "dotnet3.1-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3.1-internal-transport/nuget/v2" -Creds $creds -Username $userName -pwd $Password
|
||||||
}
|
}
|
||||||
|
|
||||||
$dotnetVersions = @('5','6','7','8')
|
$dotnetVersions = @('5','6','7','8')
|
||||||
|
@ -159,8 +159,8 @@ foreach ($dotnetVersion in $dotnetVersions) {
|
||||||
$feedPrefix = "dotnet" + $dotnetVersion;
|
$feedPrefix = "dotnet" + $dotnetVersion;
|
||||||
$dotnetSource = $sources.SelectSingleNode("add[@key='$feedPrefix']")
|
$dotnetSource = $sources.SelectSingleNode("add[@key='$feedPrefix']")
|
||||||
if ($dotnetSource -ne $null) {
|
if ($dotnetSource -ne $null) {
|
||||||
AddPackageSource -Sources $sources -SourceName "$feedPrefix-internal" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal/nuget/v2" -Creds $creds -Username $userName -Password $Password
|
AddPackageSource -Sources $sources -SourceName "$feedPrefix-internal" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal/nuget/v2" -Creds $creds -Username $userName -pwd $Password
|
||||||
AddPackageSource -Sources $sources -SourceName "$feedPrefix-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal-transport/nuget/v2" -Creds $creds -Username $userName -Password $Password
|
AddPackageSource -Sources $sources -SourceName "$feedPrefix-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal-transport/nuget/v2" -Creds $creds -Username $userName -pwd $Password
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"cmake": "3.21.0"
|
"cmake": "3.21.0"
|
||||||
},
|
},
|
||||||
"msbuild-sdks": {
|
"msbuild-sdks": {
|
||||||
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24156.1",
|
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24158.1",
|
||||||
"Microsoft.DotNet.CMake.Sdk": "8.0.0-beta.24156.1"
|
"Microsoft.DotNet.CMake.Sdk": "8.0.0-beta.24158.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue