Skip to content

Commit 096888c

Browse files
Update dependencies from https://github.com/dotnet/arcade build 20231130.7 (#8491)
[main] Update dependencies from dotnet/arcade
1 parent a2f8d72 commit 096888c

File tree

10 files changed

+21
-21
lines changed

10 files changed

+21
-21
lines changed

eng/Version.Details.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -157,25 +157,25 @@
157157
</Dependency>
158158
</ProductDependencies>
159159
<ToolsetDependencies>
160-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.23579.2">
160+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.23580.7">
161161
<Uri>https://github.com/dotnet/arcade</Uri>
162-
<Sha>3a4a93cdb9c53c097a9ae327c61336f94f1ed630</Sha>
162+
<Sha>9cb7d80460fcd74ce5b31633d2deb32a93fd30de</Sha>
163163
</Dependency>
164-
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="9.0.0-beta.23579.2">
164+
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="9.0.0-beta.23580.7">
165165
<Uri>https://github.com/dotnet/arcade</Uri>
166-
<Sha>3a4a93cdb9c53c097a9ae327c61336f94f1ed630</Sha>
166+
<Sha>9cb7d80460fcd74ce5b31633d2deb32a93fd30de</Sha>
167167
</Dependency>
168-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.23579.2">
168+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.23580.7">
169169
<Uri>https://github.com/dotnet/arcade</Uri>
170-
<Sha>3a4a93cdb9c53c097a9ae327c61336f94f1ed630</Sha>
170+
<Sha>9cb7d80460fcd74ce5b31633d2deb32a93fd30de</Sha>
171171
</Dependency>
172-
<Dependency Name="Microsoft.DotNet.ApiCompat" Version="9.0.0-beta.23579.2">
172+
<Dependency Name="Microsoft.DotNet.ApiCompat" Version="9.0.0-beta.23580.7">
173173
<Uri>https://github.com/dotnet/arcade</Uri>
174-
<Sha>3a4a93cdb9c53c097a9ae327c61336f94f1ed630</Sha>
174+
<Sha>9cb7d80460fcd74ce5b31633d2deb32a93fd30de</Sha>
175175
</Dependency>
176-
<Dependency Name="Microsoft.DotNet.GenAPI" Version="9.0.0-beta.23579.2">
176+
<Dependency Name="Microsoft.DotNet.GenAPI" Version="9.0.0-beta.23580.7">
177177
<Uri>https://github.com/dotnet/arcade</Uri>
178-
<Sha>3a4a93cdb9c53c097a9ae327c61336f94f1ed630</Sha>
178+
<Sha>9cb7d80460fcd74ce5b31633d2deb32a93fd30de</Sha>
179179
</Dependency>
180180
<Dependency Name="Microsoft.SourceLink.AzureRepos.Git" Version="8.0.0-beta.23409.2">
181181
<Uri>https://github.com/dotnet/sourcelink</Uri>

eng/Versions.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@
4848
</PropertyGroup>
4949
<!-- Packages that come from https://github.com/dotnet/arcade -->
5050
<PropertyGroup>
51-
<MicrosoftDotNetApiCompatVersion>9.0.0-beta.23579.2</MicrosoftDotNetApiCompatVersion>
52-
<MicrosoftDotNetCodeAnalysisPackageVersion>9.0.0-beta.23579.2</MicrosoftDotNetCodeAnalysisPackageVersion>
51+
<MicrosoftDotNetApiCompatVersion>9.0.0-beta.23580.7</MicrosoftDotNetApiCompatVersion>
52+
<MicrosoftDotNetCodeAnalysisPackageVersion>9.0.0-beta.23580.7</MicrosoftDotNetCodeAnalysisPackageVersion>
5353
</PropertyGroup>
5454
<!-- Sourcelink -->
5555
<PropertyGroup>

eng/common/darc-init.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
param (
22
$darcVersion = $null,
3-
$versionEndpoint = 'https://maestro-prod.westus2.cloudapp.azure.com/api/assets/darc-version?api-version=2019-01-16',
3+
$versionEndpoint = 'https://maestro.dot.net/api/assets/darc-version?api-version=2019-01-16',
44
$verbosity = 'minimal',
55
$toolpath = $null
66
)

eng/common/darc-init.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
source="${BASH_SOURCE[0]}"
44
darcVersion=''
5-
versionEndpoint='https://maestro-prod.westus2.cloudapp.azure.com/api/assets/darc-version?api-version=2019-01-16'
5+
versionEndpoint='https://maestro.dot.net/api/assets/darc-version?api-version=2019-01-16'
66
verbosity='minimal'
77

88
while [[ $# > 0 ]]; do

eng/common/post-build/add-build-to-channel.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ param(
22
[Parameter(Mandatory=$true)][int] $BuildId,
33
[Parameter(Mandatory=$true)][int] $ChannelId,
44
[Parameter(Mandatory=$true)][string] $MaestroApiAccessToken,
5-
[Parameter(Mandatory=$false)][string] $MaestroApiEndPoint = 'https://maestro-prod.westus2.cloudapp.azure.com',
5+
[Parameter(Mandatory=$false)][string] $MaestroApiEndPoint = 'https://maestro.dot.net',
66
[Parameter(Mandatory=$false)][string] $MaestroApiVersion = '2019-01-16'
77
)
88

eng/common/post-build/publish-using-darc.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ param(
33
[Parameter(Mandatory=$true)][int] $PublishingInfraVersion,
44
[Parameter(Mandatory=$true)][string] $AzdoToken,
55
[Parameter(Mandatory=$true)][string] $MaestroToken,
6-
[Parameter(Mandatory=$false)][string] $MaestroApiEndPoint = 'https://maestro-prod.westus2.cloudapp.azure.com',
6+
[Parameter(Mandatory=$false)][string] $MaestroApiEndPoint = 'https://maestro.dot.net',
77
[Parameter(Mandatory=$true)][string] $WaitPublishingFinish,
88
[Parameter(Mandatory=$false)][string] $ArtifactsPublishingAdditionalParameters,
99
[Parameter(Mandatory=$false)][string] $SymbolPublishingAdditionalParameters

eng/common/post-build/trigger-subscriptions.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ param(
22
[Parameter(Mandatory=$true)][string] $SourceRepo,
33
[Parameter(Mandatory=$true)][int] $ChannelId,
44
[Parameter(Mandatory=$true)][string] $MaestroApiAccessToken,
5-
[Parameter(Mandatory=$false)][string] $MaestroApiEndPoint = 'https://maestro-prod.westus2.cloudapp.azure.com',
5+
[Parameter(Mandatory=$false)][string] $MaestroApiEndPoint = 'https://maestro.dot.net',
66
[Parameter(Mandatory=$false)][string] $MaestroApiVersion = '2019-01-16'
77
)
88

eng/common/templates/job/publish-build-assets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
arguments: -task PublishBuildAssets -restore -msbuildEngine dotnet
8282
/p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests'
8383
/p:BuildAssetRegistryToken=$(MaestroAccessToken)
84-
/p:MaestroApiEndpoint=https://maestro-prod.westus2.cloudapp.azure.com
84+
/p:MaestroApiEndpoint=https://maestro.dot.net
8585
/p:PublishUsingPipelines=${{ parameters.publishUsingPipelines }}
8686
/p:OfficialBuildId=$(Build.BuildNumber)
8787
condition: ${{ parameters.condition }}

eng/common/templates/post-build/common-variables.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ variables:
77

88
# Default Maestro++ API Endpoint and API Version
99
- name: MaestroApiEndPoint
10-
value: "https://maestro-prod.westus2.cloudapp.azure.com"
10+
value: "https://maestro.dot.net"
1111
- name: MaestroApiAccessToken
1212
value: $(MaestroAccessToken)
1313
- name: MaestroApiVersion

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
}
1313
},
1414
"msbuild-sdks": {
15-
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.23579.2",
16-
"Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.23579.2"
15+
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.23580.7",
16+
"Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.23580.7"
1717
},
1818
"sdk": {
1919
"version": "9.0.100-alpha.1.23511.2"

0 commit comments

Comments
 (0)