File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/vs/workbench/contrib/extensions/browser Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -1127,7 +1127,7 @@ export class ExtensionsWorkbenchService extends Disposable implements IExtension
11271127
11281128 if ( isSameExtensionRunning ) {
11291129 // Different version or target platform of same extension is running. Requires reload to run the current version
1130- if ( extension . version !== runningExtension . version || extension . local . targetPlatform !== runningExtension . targetPlatform ) {
1130+ if ( ! runningExtension . isUnderDevelopment && ( extension . version !== runningExtension . version || extension . local . targetPlatform !== runningExtension . targetPlatform ) ) {
11311131 return nls . localize ( 'postUpdateTooltip' , "Please reload Visual Studio Code to enable the updated extension." ) ;
11321132 }
11331133
You can’t perform that action at this time.
0 commit comments