From 4b61f1d0fd27b9686473bbe99515663f2132e605 Mon Sep 17 00:00:00 2001 From: Matthew Fisher <40250218+MicroFish91@users.noreply.github.com> Date: Fri, 10 Jan 2025 11:53:17 -0800 Subject: [PATCH] Add folder browsing note to prompt (#826) --- .../image/imageSource/buildImageInAzure/RootFolderStep.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/image/imageSource/buildImageInAzure/RootFolderStep.ts b/src/commands/image/imageSource/buildImageInAzure/RootFolderStep.ts index 6da473eb2..5b6b59d8a 100644 --- a/src/commands/image/imageSource/buildImageInAzure/RootFolderStep.ts +++ b/src/commands/image/imageSource/buildImageInAzure/RootFolderStep.ts @@ -13,7 +13,7 @@ import { type BuildImageInAzureImageSourceContext } from './BuildImageInAzureIma export class RootFolderStep extends AzureWizardPromptStep { public async prompt(context: BuildImageInAzureImageSourceContext): Promise { - const prompt: string = localize('selectRootWorkspace', 'Select the project\'s root directory'); + const prompt: string = localize('selectRootWorkspace', 'Select the project\'s root directory (browsing to a folder will reload VS Code)'); const rootFolder: WorkspaceFolder | undefined = await getRootWorkspaceFolder(context, prompt); if (!rootFolder) {