Skip to content

Commit 712bb45

Browse files
Update dependencies from https://github.com/dotnet/arcade build 20240710.1 (#9375)
[main] Update dependencies from dotnet/arcade
1 parent 30ef346 commit 712bb45

File tree

4 files changed

+15
-34
lines changed

4 files changed

+15
-34
lines changed

eng/Version.Details.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -161,25 +161,25 @@
161161
</Dependency>
162162
</ProductDependencies>
163163
<ToolsetDependencies>
164-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24352.2">
164+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24360.1">
165165
<Uri>https://github.com/dotnet/arcade</Uri>
166-
<Sha>4a7d983f833d6b86365ea1b2b4d6ee72fbdbf944</Sha>
166+
<Sha>f20056daa31b4a08f2ce379cfe4610042c3bc26c</Sha>
167167
</Dependency>
168-
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="9.0.0-beta.24352.2">
168+
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="9.0.0-beta.24360.1">
169169
<Uri>https://github.com/dotnet/arcade</Uri>
170-
<Sha>4a7d983f833d6b86365ea1b2b4d6ee72fbdbf944</Sha>
170+
<Sha>f20056daa31b4a08f2ce379cfe4610042c3bc26c</Sha>
171171
</Dependency>
172-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.24352.2">
172+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.24360.1">
173173
<Uri>https://github.com/dotnet/arcade</Uri>
174-
<Sha>4a7d983f833d6b86365ea1b2b4d6ee72fbdbf944</Sha>
174+
<Sha>f20056daa31b4a08f2ce379cfe4610042c3bc26c</Sha>
175175
</Dependency>
176176
<Dependency Name="Microsoft.DotNet.ApiCompat" Version="9.0.0-beta.24053.1">
177177
<Uri>https://github.com/dotnet/arcade</Uri>
178178
<Sha>f4e11a15c7b8a949d4a366e792a9843ff6e88cd5</Sha>
179179
</Dependency>
180-
<Dependency Name="Microsoft.DotNet.GenAPI" Version="9.0.0-beta.24352.2">
180+
<Dependency Name="Microsoft.DotNet.GenAPI" Version="9.0.0-beta.24360.1">
181181
<Uri>https://github.com/dotnet/arcade</Uri>
182-
<Sha>4a7d983f833d6b86365ea1b2b4d6ee72fbdbf944</Sha>
182+
<Sha>f20056daa31b4a08f2ce379cfe4610042c3bc26c</Sha>
183183
</Dependency>
184184
<Dependency Name="Microsoft.SourceLink.AzureRepos.Git" Version="8.0.0-beta.23409.2">
185185
<Uri>https://github.com/dotnet/sourcelink</Uri>

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<!-- Packages that come from https://github.com/dotnet/arcade -->
5151
<PropertyGroup>
5252
<MicrosoftDotNetApiCompatVersion>9.0.0-beta.24053.1</MicrosoftDotNetApiCompatVersion>
53-
<MicrosoftDotNetCodeAnalysisPackageVersion>9.0.0-beta.24352.2</MicrosoftDotNetCodeAnalysisPackageVersion>
53+
<MicrosoftDotNetCodeAnalysisPackageVersion>9.0.0-beta.24360.1</MicrosoftDotNetCodeAnalysisPackageVersion>
5454
</PropertyGroup>
5555
<!-- Sourcelink -->
5656
<PropertyGroup>

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

Lines changed: 4 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -113,38 +113,19 @@ jobs:
113113
Add-Content -Path $filePath -Value "$(DefaultChannels)"
114114
Add-Content -Path $filePath -Value $(IsStableBuild)
115115
116-
- template: /eng/common/core-templates/steps/publish-build-artifacts.yml
117-
parameters:
118-
is1ESPipeline: ${{ parameters.is1ESPipeline }}
119-
args:
120-
displayName: Publish ReleaseConfigs Artifact
121-
pathToPublish: '$(Build.StagingDirectory)/ReleaseConfigs'
122-
publishLocation: Container
123-
artifactName: ReleaseConfigs
124-
125-
- task: powershell@2
126-
displayName: Check if SymbolPublishingExclusionsFile.txt exists
127-
inputs:
128-
targetType: inline
129-
script: |
130116
$symbolExclusionfile = "$(Build.SourcesDirectory)/eng/SymbolPublishingExclusionsFile.txt"
131-
if(Test-Path -Path $symbolExclusionfile)
117+
if (Test-Path -Path $symbolExclusionfile)
132118
{
133119
Write-Host "SymbolExclusionFile exists"
134-
Write-Host "##vso[task.setvariable variable=SymbolExclusionFile]true"
135-
}
136-
else{
137-
Write-Host "Symbols Exclusion file does not exist"
138-
Write-Host "##vso[task.setvariable variable=SymbolExclusionFile]false"
120+
Copy-Item -Path $symbolExclusionfile -Destination "$(Build.StagingDirectory)/ReleaseConfigs"
139121
}
140122
141123
- template: /eng/common/core-templates/steps/publish-build-artifacts.yml
142124
parameters:
143125
is1ESPipeline: ${{ parameters.is1ESPipeline }}
144126
args:
145-
displayName: Publish SymbolPublishingExclusionsFile Artifact
146-
condition: eq(variables['SymbolExclusionFile'], 'true')
147-
pathToPublish: '$(Build.SourcesDirectory)/eng/SymbolPublishingExclusionsFile.txt'
127+
displayName: Publish ReleaseConfigs Artifact
128+
pathToPublish: '$(Build.StagingDirectory)/ReleaseConfigs'
148129
publishLocation: Container
149130
artifactName: ReleaseConfigs
150131

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.24352.2",
16-
"Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.24352.2"
15+
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.24360.1",
16+
"Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.24360.1"
1717
},
1818
"sdk": {
1919
"version": "9.0.100-preview.5.24307.3"

0 commit comments

Comments
 (0)