diff --git a/resources/extension.vsixmanifest b/resources/extension.vsixmanifest
index 2ee21fa..ca1bdfa 100644
--- a/resources/extension.vsixmanifest
+++ b/resources/extension.vsixmanifest
@@ -10,6 +10,7 @@
<% if (links.repository) { %>
+
<% } %>
<% if (links.bugs) { %><% } %>
<% if (links.homepage) { %><% } %>
diff --git a/src/test/package.test.ts b/src/test/package.test.ts
index a79a828..a79e083 100644
--- a/src/test/package.test.ts
+++ b/src/test/package.test.ts
@@ -293,6 +293,7 @@ describe('toVsixManifest', () => {
const properties = result.PackageManifest.Metadata[0].Properties[0].Property.map(p => p.$);
assert.ok(properties.some(p => p.Id === 'Microsoft.VisualStudio.Services.Links.Source' && p.Value === 'https://github.com/Microsoft/vscode-spell-check.git'));
assert.ok(properties.some(p => p.Id === 'Microsoft.VisualStudio.Services.Links.Getstarted' && p.Value === 'https://github.com/Microsoft/vscode-spell-check.git'));
+ assert.ok(properties.some(p => p.Id === 'Microsoft.VisualStudio.Services.Links.Repository' && p.Value === 'https://github.com/Microsoft/vscode-spell-check.git'));
assert.ok(properties.some(p => p.Id === 'Microsoft.VisualStudio.Services.Links.Support' && p.Value === 'https://github.com/Microsoft/vscode-spell-check/issues'));
assert.ok(properties.some(p => p.Id === 'Microsoft.VisualStudio.Services.Links.Learn' && p.Value === 'https://github.com/Microsoft/vscode-spell-check'));
});