Skip to content

Fix GitHub Actions workflow for Windows build#1

Open
Copilot wants to merge 2 commits intomasterfrom
copilot/create-windows-build-workflow
Open

Fix GitHub Actions workflow for Windows build#1
Copilot wants to merge 2 commits intomasterfrom
copilot/create-windows-build-workflow

Conversation

Copy link
Copy Markdown

Copilot AI commented Dec 3, 2025

The existing workflow was a template with placeholder values (your-solution-name, your-test-project-path, etc.) that would fail on any run.

Changes

  • Configure MSBuild to build SharpMonoInjector.sln with Debug/Release matrix
  • Add NuGet package restore step
  • Upload build artifacts from build/{configuration}/ (matches project output paths)
  • Remove inapplicable template steps (dotnet test, code signing, WAP packaging)
- name: Restore NuGet packages
  run: nuget restore SharpMonoInjector.sln

- name: Build
  run: msbuild SharpMonoInjector.sln /p:Configuration=${{ matrix.configuration }}

- name: Upload build artifacts
  uses: actions/upload-artifact@v4
  with:
    name: SharpMonoInjector-${{ matrix.configuration }}
    path: build/${{ matrix.configuration }}/
Original prompt

please make workflow to build this github project on windows


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Copilot AI self-assigned this Dec 3, 2025
Co-authored-by: JohnnyTheCoder1 <111908128+JohnnyTheCoder1@users.noreply.github.com>
Copilot AI changed the title [WIP] Add workflow to build project on Windows Fix GitHub Actions workflow for Windows build Dec 3, 2025
Copilot AI requested a review from JohnnyTheCoder1 December 3, 2025 19:18
@JohnnyTheCoder1 JohnnyTheCoder1 marked this pull request as ready for review December 3, 2025 19:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants