This commit is contained in:
Joao Moreno
2016-10-14 15:27:19 +02:00
parent 7f80de0476
commit 92db0fb9ff
2 changed files with 2 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ const useId = localize('useId', "Make sure you use the full extension ID, includ
function getId(manifest: IExtensionManifest, withVersion?: boolean): string {
if (withVersion) {
return `${manifest.publisher}.${manifest.name} v${manifest.version}`;
return `${manifest.publisher}.${manifest.name}@${manifest.version}`;
} else {
return `${manifest.publisher}.${manifest.name}`;
}