Skip to content

Commit 4ac0834

Browse files
fix: add --framework net9.0 to C# server command
1 parent 4606e0d commit 4ac0834

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.claude/skills/mcp-sdk-tier-audit/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ go build -o /tmp/go-conformance-client ./conformance/everything-client
138138
```bash
139139
# Terminal 1: start the everything server (requires .NET SDK)
140140
cd ~/src/mcp/csharp-sdk
141-
dotnet run --project tests/ModelContextProtocol.ConformanceServer -- --urls http://localhost:3003
141+
dotnet run --project tests/ModelContextProtocol.ConformanceServer --framework net9.0 -- --urls http://localhost:3003
142142

143143
# Terminal 2: run the audit (from the conformance repo)
144144
/mcp-sdk-tier-audit ~/src/mcp/csharp-sdk http://localhost:3003 "dotnet run --project ~/src/mcp/csharp-sdk/tests/ModelContextProtocol.ConformanceClient"
@@ -233,7 +233,7 @@ npm run --silent tier-check -- \
233233
```bash
234234
# Terminal 1: start the server (requires .NET SDK)
235235
cd ~/src/mcp/csharp-sdk
236-
dotnet run --project tests/ModelContextProtocol.ConformanceServer -- --urls http://localhost:3003
236+
dotnet run --project tests/ModelContextProtocol.ConformanceServer --framework net9.0 -- --urls http://localhost:3003
237237

238238
# Terminal 2: run tier-check (server + client conformance)
239239
npm run --silent tier-check -- \

0 commit comments

Comments
 (0)