File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
apps/vs-code-designer/src/app/utils/vsCodeConfig Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { tryParseFuncVersion } from '../funcCoreTools/funcVersion';
10
10
import { tryGetLogicAppProjectRoot } from '../verifyIsProject' ;
11
11
import { getWorkspaceSetting , updateGlobalSetting } from './settings' ;
12
12
import { verifyTargetFramework } from './verifyTargetFramework' ;
13
- import { isEmptyString } from '@microsoft/utils-logic-apps' ;
13
+ import { isEmptyString , isNullOrUndefined } from '@microsoft/utils-logic-apps' ;
14
14
import type { IActionContext } from '@microsoft/vscode-azext-utils' ;
15
15
import { callWithTelemetryAndErrorHandling , DialogResponses } from '@microsoft/vscode-azext-utils' ;
16
16
import type { FuncVersion } from '@microsoft/vscode-extension' ;
@@ -52,7 +52,7 @@ export async function verifyVSCodeConfigOnActivate(
52
52
break ;
53
53
default :
54
54
}
55
- } else {
55
+ } else if ( isNullOrUndefined ( version ) ) {
56
56
await promptToInitializeProject ( workspacePath , context ) ;
57
57
}
58
58
}
You can’t perform that action at this time.
0 commit comments