You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewExtensionManagementError(nls.localize('notFoundCompatiblePrereleaseDependency',"Can't install pre-release version of '{0}' extension because it is not compatible with the current version of {1} (version {2}).",extension.identifier.id,this.productService.nameLong,this.productService.version),ExtensionManagementErrorCode.IncompatiblePreRelease);
374
374
}
375
375
}else{
376
+
/** If no compatible release version is found, check if the extension has a release version or not and throw relevant error */
thrownewExtensionManagementError(nls.localize('notFoundReleaseExtension',"Can't install release version of '{0}' extension because it has no release version.",extension.identifier.id),ExtensionManagementErrorCode.ReleaseVersionNotFound);
379
+
}
376
380
thrownewExtensionManagementError(nls.localize('notFoundCompatibleDependency',"Can't install '{0}' extension because it is not compatible with the current version of {1} (version {2}).",extension.identifier.id,this.productService.nameLong,this.productService.version),ExtensionManagementErrorCode.Incompatible);
0 commit comments