azure-pipelines.yml: Commented out extra steps that are only intended for debugging
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 9897fb5..067031d 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -143,7 +143,8 @@
         Invoke-psake $(BuildDirectory)/build.ps1 -Task $tasks -properties $properties -parameters $parameters
         exit !($psake.build_success)
       displayName: 'PSake Build, Pack, and Publish'
-    - template: 'build/azure-templates/show-all-environment-variables.yml'
+
+    #- template: 'build/azure-templates/show-all-environment-variables.yml' # Uncomment for debugging
         
     - pwsh: |
         $dir = '$(Build.ArtifactStagingDirectory)/$(VersionArtifactName)'
@@ -563,10 +564,9 @@
         targetPath: '$(System.DefaultWorkingDirectory)/$(VersionArtifactName)'
 
       # For debugging this pipeline
-    - pwsh: | 
-        Get-ChildItem -Path $(System.DefaultWorkingDirectory)
-    - pwsh: | 
-        Get-ChildItem -Path '$(VersionArtifactName)'
+    #- pwsh: | 
+    #    Get-ChildItem -Path $(System.DefaultWorkingDirectory)
+    #    Get-ChildItem -Path '$(VersionArtifactName)'
 
       # NOTE: We are setting Build.BuildNumber here to the NuGet package version to work around the limitation that
       # the version cannot be passed to the Index Sources & Publish Symbols task.