1.15.5: fix double-slash .mcp//server.json package path#109
Merged
Conversation
1.15.4 packed the manifest with a trailing-separator PackagePath ("\.mcp\"),
which the Linux release runner mis-joined into ".mcp//server.json". nuget.org
matches the exact path ".mcp/server.json", so it still could not find the
manifest. Use an explicit forward-slash path including the filename.
Co-Authored-By: Claude Opus 4.8 <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follow-up to #108. The 1.15.4 package embedded the manifest at
.mcp//server.json(double slash) becausePackagePath="\.mcp\"(trailing backslash) is mis-joined on the Linux release runner. nuget.org matches the exact path.mcp/server.json, so it still reported it could not generate the VS Code MCP config.The local Windows pack produced a single slash, which is why #108's verification didn't catch it — the double slash only appears on the Linux CI build.
Change
mcp/TokenSaver.Mcp.csproj: pack to an explicit forward-slash path including the filename —PackagePath=".mcp/server.json"— which has no trailing-separator join step.Confirmed by inspecting the published 1.15.4
.nupkg: the entry was literally.mcp//server.json.