Skip to content

Commit

Permalink
Fix msbuild parameter syntax in GitHub Actions workflow
Browse files Browse the repository at this point in the history
The msbuild command in the GitHub Actions workflow had a syntax error where a dash was incorrectly used instead of a colon for the BuildProjectReferences parameter. This fix ensures that the solution builds correctly by using the proper parameter notation.
  • Loading branch information
ivandrofly committed Nov 20, 2024
1 parent 2e6534c commit 0070afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

# Build the solution
- name: Build solution
run: msbuild "source\Plugins.sln" /p:Configuration=Release -p BuildProjectReferences=false
run: msbuild "source\Plugins.sln" /p:Configuration=Release /p:BuildProjectReferences=false

# Run tests (optional)
#- name: Run tests
Expand Down

0 comments on commit 0070afa

Please sign in to comment.