We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 736549d commit 4369f73Copy full SHA for 4369f73
.github/workflows/ci.yml
@@ -19,19 +19,14 @@ jobs:
19
- name: Checkout code
20
uses: actions/checkout@v4
21
22
- - name: Setup .NET
23
- uses: actions/setup-dotnet@v4
24
- with:
25
- dotnet-version: "4.8.x"
26
-
27
- name: Setup MSBuild
28
uses: microsoft/setup-msbuild@v2
29
30
- - name: Restore dependencies
31
- run: dotnet restore
+ - name: Restore NuGet packages
+ run: nuget restore CeMCP.sln
32
33
- name: Build ${{ matrix.configuration }}
34
- run: dotnet build --configuration ${{ matrix.configuration }} --no-restore
+ run: msbuild CeMCP.sln /p:Configuration=${{ matrix.configuration }} /p:Platform="Any CPU"
35
36
- name: Upload build artifacts (${{ matrix.configuration }})
37
uses: actions/upload-artifact@v4
0 commit comments