File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
build/AzurePipelinesTemplates Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -45,15 +45,21 @@ steps:
4545 "ToolVersion" : "1.0"
4646 }
4747 ]
48- - task : PublishSymbols@2 # We only publish symbols to microsoftpublicsymbols for signed builds.
49- displayName : ' Publish symbols'
48+ # We only publish symbols to microsoftpublicsymbols for signed builds.
49+ - task : PublishSymbols@2 # Publish symbols to public Microsoft Symbol Server
50+ displayName : ' Publish symbols (public)'
5051 inputs :
5152 SearchPattern : $(buildOutputDir)/$(buildConfiguration)/$(buildPlatform)/**/*.pdb
5253 SymbolServerType : ' TeamServices'
5354 env :
5455 LIB : $(Build.SourcesDirectory)
5556 ArtifactServices_Symbol_AccountName : microsoftpublicsymbols
5657 ArtifactServices_Symbol_PAT : $(WinUILab-Pipeline-PAT)
58+ - task : PublishSymbols@2 # Publish symbols to internal symweb
59+ displayName : ' Publish symbols (internal)'
60+ inputs :
61+ SearchPattern : $(buildOutputDir)/$(buildConfiguration)/$(buildPlatform)/**/*.pdb
62+ SymbolServerType : ' TeamServices'
5763
5864 - template : MUX-MakeFrameworkPackages-Steps.yml
5965 parameters :
You can’t perform that action at this time.
0 commit comments