@@ -396,20 +396,18 @@ public void CheckForStableAssetsInNonIsolatedFeeds()
396396 /// <param name="symbolPublishingExclusionsFile">Right now we do not add any files to this, so this is going to be null</param>
397397 /// <param name="publishSpecialClrFiles">If true, the special coreclr module indexed files like DBI, DAC and SOS are published</param>
398398 /// <param name="clientThrottle">To avoid starting too many processes</param>
399- /// <param name="convertPortablePdbsToWindowsPdbs">If true, convert protable pdbs to windows pdbs</param>
400399 /// <returns>Task</returns>
401400 public async Task PublishSymbolsUsingStreamingAsync (
402401 string pdbArtifactsBasePath ,
403402 string msdlToken ,
404403 string symWebToken ,
405404 string symbolPublishingExclusionsFile ,
406405 bool publishSpecialClrFiles ,
407- bool convertPortablePdbsToWindowsPdbs ,
408406 Dictionary < string , HashSet < Asset > > buildAssets ,
409407 SemaphoreSlim clientThrottle )
410408 {
411409 Log . LogMessage ( MessageImportance . High ,
412- $ "Performing symbol publishing... \n ExpirationInDays : { ExpirationInDays } \n ConvertPortablePdbsToWindowsPdb : { convertPortablePdbsToWindowsPdbs } \n dryRun: false ") ;
410+ $ "Performing symbol publishing... \n ExpirationInDays : { ExpirationInDays } \n ConvertPortablePdbsToWindowsPdb : false \n dryRun: false ") ;
413411 var symbolCategory = TargetFeedContentType . Symbols ;
414412
415413 using HttpClient httpClient = CreateAzdoClient ( AzureDevOpsOrg , false , AzureProject ) ;
@@ -504,7 +502,7 @@ await PublishSymbolsHelper.PublishAsync(
504502 null ,
505503 excludeFiles ,
506504 ExpirationInDays ,
507- convertPortablePdbsToWindowsPdbs ,
505+ false ,
508506 publishSpecialClrFiles ,
509507 null ,
510508 false ,
@@ -602,14 +600,12 @@ await PublishSymbolsHelper.PublishAsync(
602600 /// <param name="temporarySymbolsLocation">Path to Symbol.nupkgs</param>
603601 /// <param name="clientThrottle">To avoid starting too many processes</param>
604602 /// <param name="publishSpecialClrFiles">If true, the special coreclr module indexed files like DBI, DAC and SOS are published</param>
605- /// <param name="convertPortablePdbsToWindowsPdbs">If true, convert protable pdbs to windows pdbs</param>
606603 public async Task HandleSymbolPublishingAsync (
607604 string pdbArtifactsBasePath ,
608605 string msdlToken ,
609606 string symWebToken ,
610607 string symbolPublishingExclusionsFile ,
611608 bool publishSpecialClrFiles ,
612- bool convertPortablePdbsToWindowsPdbs ,
613609 Dictionary < string , HashSet < Asset > > buildAssets ,
614610 SemaphoreSlim clientThrottle = null ,
615611 string temporarySymbolsLocation = null )
@@ -622,7 +618,6 @@ await PublishSymbolsUsingStreamingAsync(
622618 symWebToken ,
623619 symbolPublishingExclusionsFile ,
624620 publishSpecialClrFiles ,
625- convertPortablePdbsToWindowsPdbs ,
626621 buildAssets ,
627622 clientThrottle ) ;
628623 }
@@ -634,7 +629,6 @@ await PublishSymbolsfromBlobArtifactsAsync(
634629 symWebToken ,
635630 symbolPublishingExclusionsFile ,
636631 publishSpecialClrFiles ,
637- convertPortablePdbsToWindowsPdbs ,
638632 temporarySymbolsLocation ) ;
639633 }
640634 }
@@ -648,14 +642,12 @@ await PublishSymbolsfromBlobArtifactsAsync(
648642 /// <param name="symbolPublishingExclusionsFile">Right now we do not add any files to this, so this is going to be null</param>
649643 /// <param name="temporarySymbolsLocation">Path to Symbol.nupkgs</param>
650644 /// <param name="publishSpecialClrFiles">If true, the special coreclr module indexed files like DBI, DAC and SOS are published</param>
651- /// <param name="convertPortablePdbsToWindowsPdbs">If true, convert protable pdbs to windows pdbs</param>
652645 public async Task PublishSymbolsfromBlobArtifactsAsync (
653646 string pdbArtifactsBasePath ,
654647 string msdlToken ,
655648 string symWebToken ,
656649 string symbolPublishingExclusionsFile ,
657650 bool publishSpecialClrFiles ,
658- bool convertPortablePdbsToWindowsPdbs ,
659651 string temporarySymbolsLocation = null )
660652 {
661653 if ( Directory . Exists ( temporarySymbolsLocation ) )
@@ -690,7 +682,7 @@ public async Task PublishSymbolsfromBlobArtifactsAsync(
690682 var serverPath = server . Key ;
691683 var token = server . Value ; ;
692684 Log . LogMessage ( MessageImportance . High ,
693- $ "Performing symbol publishing...\n SymbolServerPath : ${ serverPath } \n ExpirationInDays : { ExpirationInDays } \n ConvertPortablePdbsToWindowsPdb : { convertPortablePdbsToWindowsPdbs } \n dryRun: false \n Total number of symbol files : { fileEntries . Length } ") ;
685+ $ "Performing symbol publishing...\n SymbolServerPath : ${ serverPath } \n ExpirationInDays : { ExpirationInDays } \n ConvertPortablePdbsToWindowsPdb : false \n dryRun: false \n Total number of symbol files : { fileEntries . Length } ") ;
694686
695687 try
696688 {
@@ -702,7 +694,7 @@ await PublishSymbolsHelper.PublishAsync(
702694 filesToSymbolServer ,
703695 null ,
704696 ExpirationInDays ,
705- convertPortablePdbsToWindowsPdbs ,
697+ false ,
706698 publishSpecialClrFiles ,
707699 null ,
708700 false ,
0 commit comments