Skip to content

Commit 586b059

Browse files
authored
Update .NET SDK (#208)
* Copy repo binlogs to artifacts * Update SDK to 10 * Ignore binlog files
1 parent c4876a5 commit 586b059

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,3 +252,6 @@ paket-files/
252252
# JetBrains Rider
253253
.idea/
254254
*.sln.iml
255+
256+
# MSBuild Binary Logs
257+
*.binlog

azure-pipelines.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,3 +228,14 @@ extends:
228228
-ResourceGroup source.dot.net
229229
-WebappName netsourceindex
230230
-StorageAccountName $(storageAccount)
231+
232+
- task: CopyFiles@2
233+
displayName: Copy binlogs for upload
234+
inputs:
235+
SourceFolder: '$(Build.SourcesDirectory)'
236+
Contents: |
237+
**/*.binlog
238+
TargetFolder: $(Build.ArtifactStagingDirectory)/logs/src
239+
CleanTargetFolder: false
240+
continueOnError: true
241+
condition: succeededOrFailed()

global.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"sdk": {
3-
"version": "9.0.203",
3+
"version": "10.0.100-rc.1.25451.107",
4+
"allowPrerelease": true,
45
"rollForward": "major"
56
}
67
}

0 commit comments

Comments
 (0)