Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -252,3 +252,6 @@ paket-files/
# JetBrains Rider
.idea/
*.sln.iml

# MSBuild Binary Logs
*.binlog
11 changes: 11 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,3 +228,14 @@ extends:
-ResourceGroup source.dot.net
-WebappName netsourceindex
-StorageAccountName $(storageAccount)

- task: CopyFiles@2
displayName: Copy binlogs for upload
inputs:
SourceFolder: '$(Build.SourcesDirectory)'
Contents: |
**/*.binlog
TargetFolder: $(Build.ArtifactStagingDirectory)/logs/src
CleanTargetFolder: false
continueOnError: true
condition: succeededOrFailed()
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should make binlogs from subrepo builds available as artifacts, simplifying debugging in the future.

3 changes: 2 additions & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"sdk": {
"version": "9.0.203",
"version": "10.0.100-rc.1.25451.107",
"allowPrerelease": true,
"rollForward": "major"
}
}
Loading