Skip to content
Open
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
19 changes: 19 additions & 0 deletions .azure-pipelines/ci-build-migrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ jobs:
ArtifactName: "drop"
publishLocation: "Container"

- task: PublishPipelineArtifact@1
inputs:
targetPath: '$(Pipeline.Workspace)'
artifact: 'symbols'
publishLocation: 'pipeline'

- task: NuGetCommand@2
displayName: Publish NuGet to preview feed
inputs:
Expand All @@ -51,4 +57,17 @@ jobs:
publishVstsFeed: $(PROJECT_NAME)/$(PREVIEW_FEED_NAME)
allowPackageConflicts: true

- task: PublishSymbols@2
displayName: Publish Symbols
inputs:
SymbolsFolder: '$(Build.ArtifactStagingDirectory)'
SearchPattern: '**/Microsoft.Graph.Entra.*.snupkg'
IndexSources: true
PublishSymbols: true
SymbolServerType: 'TeamServices'
SymbolExpirationInDays: '36530'
IndexableFileFormats: 'Default'
DetailedLog: true
SymbolsArtifactName: 'Symbols_$(BuildConfiguration)'

- template: ./common-templates/security-post-checks.yml
13 changes: 13 additions & 0 deletions .azure-pipelines/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,17 @@ jobs:
publishVstsFeed: $(PROJECT_NAME)/$(PREVIEW_FEED_NAME)
allowPackageConflicts: true

- task: PublishSymbols@2
displayName: Publish Symbols
inputs:
SymbolsFolder: '$(Build.ArtifactStagingDirectory)'
SearchPattern: '**/Microsoft.Graph.Entra.*.snupkg'
IndexSources: true
PublishSymbols: true
SymbolServerType: 'TeamServices'
SymbolExpirationInDays: '36530'
IndexableFileFormats: 'Default'
DetailedLog: true
SymbolsArtifactName: 'Symbols_$(BuildConfiguration)'

- template: ./common-templates/security-post-checks.yml