fix(ci): Explicitly target solution file in build process

The GitHub Actions workflow was failing to build the solution because it was not explicitly targeting the CRSim.sln file. This caused the build to fail with missing project reference errors.

This change modifies the 'Restore and Build' step in the release.yml workflow to explicitly target the CRSim.sln file for both the 'dotnet restore' and 'dotnet build' commands. This ensures that all projects in the solution are correctly restored and built, resolving the build failure.
This commit is contained in:
google-labs-jules[bot]
2025-12-13 15:14:08 +00:00
parent 159bf3e249
commit 04a092bfac
2 changed files with 8 additions and 7 deletions

View File

@@ -78,8 +78,8 @@ jobs:
- name: Restore and Build
run: |
dotnet restore
dotnet build --configuration Release --no-restore
dotnet restore CRSim.sln
dotnet build CRSim.sln --configuration Release --no-restore
- name: Generate changelog
uses: orhun/git-cliff-action@v4