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('malicious extension',"Can't install '{0}' extension since it was reported to be problematic.",extension.identifier.id),ExtensionManagementErrorCode.Malicious);
thrownewExtensionManagementError(nls.localize('incompatible platform',"The '{0}' extension is not available in {1} for {2}.",extension.identifier.id,this.productService.nameLong,TargetPlatformToString(targetPlatform)),ExtensionManagementErrorCode.IncompatibleTargetPlatform);
thrownewExtensionManagementError(nls.localize('notFoundDeprecatedReplacementExtension',"Can't install '{0}' extension since it was deprecated and the replacement extension '{1}' can't be found.",extension.identifier.id,deprecationInfo.extension.id),ExtensionManagementErrorCode.Deprecated);
thrownewExtensionManagementError(nls.localize('notFoundReleaseExtension',"Can't install release version of '{0}' extension because it has no release version.",extension.identifier.id),ExtensionManagementErrorCode.ReleaseVersionNotFound);
thrownewExtensionManagementError(nls.localize('incompatible platform',"The '{0}' extension is not available in {1} for {2}.",extension.identifier.id,this.productService.nameLong,TargetPlatformToString(targetPlatform)),ExtensionManagementErrorCode.IncompatibleTargetPlatform);
thrownewExtensionManagementError(nls.localize('notFoundReleaseExtension',"Can't install release version of '{0}' extension because it has no release version.",extension.identifier.id),ExtensionManagementErrorCode.ReleaseVersionNotFound);
524
+
}
525
+
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);
512
526
}
513
-
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);
thrownewExtensionManagementError(`Cannot install '${extension.identifier.id}' extension because of version mismatch in Marketplace`,ExtensionManagementErrorCode.Invalid);
536
+
thrownewExtensionManagementError(`Cannot install '${compatibleExtension.identifier.id}' extension because of version mismatch in Marketplace`,ExtensionManagementErrorCode.Invalid);
0 commit comments