Skip to content

Commit 2c32ed1

Browse files
Update CI configuration and documentation to specify MCP.sln for build and restore
1 parent 5c13f6d commit 2c32ed1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
with:
1818
dotnet-version: "9.0.x"
1919

20-
- name: Restore
21-
run: dotnet restore
20+
- name: Restore MCP.sln
21+
run: dotnet restore MCP.sln
2222

23-
- name: Build (Release)
24-
run: dotnet build --no-restore -c Release
23+
- name: Build MCP.sln (Release)
24+
run: dotnet build MCP.sln -c Release --no-restore

docs/CI-CD.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CI/CD
22

3-
- CI: Builds the repository on every push and PR (.github/workflows/ci.yml).
3+
- CI: Builds the `MCP.sln` solution on every push and PR (.github/workflows/ci.yml).
44
- CD: Publishes single-file executables for `server.Stdio` for three OS targets in one run (.github/workflows/release.yml).
55

66
How to trigger deployment:

0 commit comments

Comments
 (0)