From 033bc0282874dc8a3f4861dab70ab9e0c293dc1b Mon Sep 17 00:00:00 2001 From: David Raygoza Date: Tue, 30 Jun 2026 14:14:40 -0700 Subject: [PATCH] Try to fix NewProjectWizard loading by reverting to old defualt --- pipeline/common.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pipeline/common.yml b/pipeline/common.yml index 0db5b234..836f5916 100644 --- a/pipeline/common.yml +++ b/pipeline/common.yml @@ -166,6 +166,16 @@ jobs: $_ } } | Set-Content $build_script + - task: PowerShell@2 + displayName: Update token for template + condition: eq('${{ parameters.IsProd }}', true) + inputs: + targetType: inline + script: |- + $project_template = 'GoogleTestAdapter\GoogleTestProjectTemplate\GoogleTest.vstemplate' + (Get-Content $project_template) | ForEach-Object { + $_ -Replace "1924acebdd4c8a75", "b03f5f7f11d50a3a" + } | Set-Content $project_template - task: CopyFiles@2 displayName: 'Copy FinalPublicKey.snk to TestAdapterForGoogleTest' condition: eq('${{ parameters.IsProd }}', true)