From d5415fcbb4050a219887b53b01bd2af728b658b9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Jun 2026 23:36:01 +0000 Subject: [PATCH 1/2] Initial plan From 4fc83d62a3c96432042b357d7eb959921d1d135b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Jun 2026 23:38:07 +0000 Subject: [PATCH 2/2] fix: set AzureWebJobsStorage default to UseDevelopmentStorage=true in classic flow --- .../ProjectCreateStep/ScriptProjectCreateStep.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/createNewProject/ProjectCreateStep/ScriptProjectCreateStep.ts b/src/commands/createNewProject/ProjectCreateStep/ScriptProjectCreateStep.ts index e356b27b3..2f83001ca 100644 --- a/src/commands/createNewProject/ProjectCreateStep/ScriptProjectCreateStep.ts +++ b/src/commands/createNewProject/ProjectCreateStep/ScriptProjectCreateStep.ts @@ -8,7 +8,7 @@ import * as os from 'os'; import * as path from 'path'; import { type Progress } from 'vscode'; import { FuncVersion } from '../../../FuncVersion'; -import { gitignoreFileName, hostFileName, localSettingsFileName, workerRuntimeKey } from '../../../constants'; +import { gitignoreFileName, hostFileName, localSettingsFileName, localStorageEmulatorConnectionString, workerRuntimeKey } from '../../../constants'; import { type IHostJsonV1, type IHostJsonV2 } from '../../../funcConfig/host'; import { type ILocalSettingsJson } from '../../../funcConfig/local.settings'; import { bundleFeedUtils } from '../../../utils/bundleFeedUtils'; @@ -25,7 +25,7 @@ export class ScriptProjectCreateStep extends ProjectCreateStepBase { protected localSettingsJson: ILocalSettingsJson = { IsEncrypted: false, Values: { - AzureWebJobsStorage: '' + AzureWebJobsStorage: localStorageEmulatorConnectionString } };