diff --git a/Build/templates/create_vs_bootstrapper.yml b/Build/templates/create_vs_bootstrapper.yml index 6c16109d24..caf0d48c26 100644 --- a/Build/templates/create_vs_bootstrapper.yml +++ b/Build/templates/create_vs_bootstrapper.yml @@ -6,6 +6,7 @@ steps: - task: MicroBuildBuildVSBootstrapper@3 displayName: 'Build Bootstrapper' inputs: + azureSubscription: 'VSEng-VSDrop-MI' # SERVICE CONNECTION channelName: 'IntPreview' vsMajorVersion: '18' bootstrapperCoreFeedSource: 'https://devdiv.pkgs.visualstudio.com/_packaging/Setup/nuget/v3/index.json' @@ -14,6 +15,8 @@ steps: # this outputFolder must match the "dropFolder" in the 1ES.MicroBuildVstsDrop@1 task in azure-pipelines.yml outputFolder: $(Build.StagingDirectory)\release manifests: $(Build.StagingDirectory)\release\Microsoft.PythonTools.vsman + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) # Add the system access token. # Publish the bootstrapper as a build artifact. # We do this manually instead of using the templateContext outputs because we don't need sbom generation. diff --git a/Build/templates/publish_symbols.yml b/Build/templates/publish_symbols.yml index 43b51f1572..f85226687e 100644 --- a/Build/templates/publish_symbols.yml +++ b/Build/templates/publish_symbols.yml @@ -27,10 +27,12 @@ steps: # When you insert your binaries into VS or ship them to any other client you need to archive your binaries & symbols to MSDL. # This will ensure that your symbols are available even if the associated build is deleted and will also make them available # on the internet so that external clients can download them. - - task: MicroBuildArchiveSymbols@5 + - task: MicroBuildArchiveSymbols@6 displayName: 'Archive Symbols' inputs: SymbolsFeatureName: PTVS SymbolsProject: VS - azureSubscription: Symbols Upload (DevDiv) - SymbolsAgentPath: '$(Build.ArtifactStagingDirectory)/symbols' \ No newline at end of file + azureSubscription: 'VSEng-SymbolsUpload' # SERVICE CONNECTION + SymbolsAgentPath: '$(Build.ArtifactStagingDirectory)/symbols' + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) # Add the system access token. \ No newline at end of file diff --git a/package.json b/package.json index 5601b29e87..71e8c4d0bc 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,6 @@ "name": "ptvs", "private": true, "devDependencies": { - "@pylance/pylance": "2025.8.1" + "@pylance/pylance": "2025.8.2" } }