From 9b6e557a60e31f1b98272d42c65c3bd37690a304 Mon Sep 17 00:00:00 2001 From: anannya03 Date: Mon, 23 Mar 2026 21:55:21 -0700 Subject: [PATCH 1/2] Updated VSIX-DESIGN.md --- servers/Template.Mcp.Server/vscode/VSIX-DESIGN.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/servers/Template.Mcp.Server/vscode/VSIX-DESIGN.md b/servers/Template.Mcp.Server/vscode/VSIX-DESIGN.md index 803f5ffdbf..629e21e474 100644 --- a/servers/Template.Mcp.Server/vscode/VSIX-DESIGN.md +++ b/servers/Template.Mcp.Server/vscode/VSIX-DESIGN.md @@ -125,9 +125,6 @@ const serverPath = path.join(context.extensionPath, 'server', binary); - As an optimization, the extension could download the latest platform-specific server binary from a public URL at runtime. - This reduces VSIX size but requires HTTP(S) download logic. - Not currently implemented in the default design for maximum compatibility and offline support. -- Note: Platform specific .zip files are hosted on GitHub in each release: - - https://github.com/microsoft/mcp/releases/download/Template.Mcp.Server-0.0.12-alpha.5502650/Template.Mcp.Server-win-x64.zip - - https://github.com/microsoft/mcp/releases/download/Template.Mcp.Server-0.0.12-alpha.5502650/Template.Mcp.Server-osx-arm64.zip --- From e4272d671ac2b25614644e9bd6498903aa1e818b Mon Sep 17 00:00:00 2001 From: anannya03 Date: Mon, 23 Mar 2026 23:36:22 -0700 Subject: [PATCH 2/2] review comment --- servers/Template.Mcp.Server/vscode/VSIX-DESIGN.md | 1 + 1 file changed, 1 insertion(+) diff --git a/servers/Template.Mcp.Server/vscode/VSIX-DESIGN.md b/servers/Template.Mcp.Server/vscode/VSIX-DESIGN.md index 629e21e474..0048452a17 100644 --- a/servers/Template.Mcp.Server/vscode/VSIX-DESIGN.md +++ b/servers/Template.Mcp.Server/vscode/VSIX-DESIGN.md @@ -125,6 +125,7 @@ const serverPath = path.join(context.extensionPath, 'server', binary); - As an optimization, the extension could download the latest platform-specific server binary from a public URL at runtime. - This reduces VSIX size but requires HTTP(S) download logic. - Not currently implemented in the default design for maximum compatibility and offline support. +- Note: Platform specific .zip files are hosted on GitHub in each release. ---