Skip to content

Fix Makefile after project rename#41

Merged
mapitman merged 1 commit into
mainfrom
bug/fix-makefile
Jan 11, 2026
Merged

Fix Makefile after project rename#41
mapitman merged 1 commit into
mainfrom
bug/fix-makefile

Conversation

@mapitman

Copy link
Copy Markdown
Owner

Closes #39

Problem

The Makefile was still referencing media-encoding.sln (the old project name) instead of RipSharp.sln, causing all make commands to fail.

Solution

Updated all solution references in the Makefile from media-encoding.sln to RipSharp.sln.

Verification

Tested all Makefile targets successfully:

  • make help - Shows available targets
  • make restore - Restores NuGet packages
  • make build - Builds the solution
  • make test - Runs all 112 tests (all pass)
  • make format - Runs dotnet format
  • make clean - Cleans build outputs
  • make all - Default target (build + test)

Updated all references from media-encoding.sln to RipSharp.sln.

Verified all Makefile targets work correctly:
- make help
- make restore
- make build
- make test
- make format
- make clean
- make all (default)

Closes #39
Copilot AI review requested due to automatic review settings January 11, 2026 19:09

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR fixes the Makefile to reference the correct solution file name after the project was renamed from media-encoding to RipSharp. The Makefile was causing all make commands to fail due to referencing a non-existent solution file.

Changes:

  • Updated all media-encoding.sln references to RipSharp.sln in the Makefile
  • Added a blank line in GlobalUsings.cs for formatting consistency

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.

File Description
Makefile Updated solution file references from media-encoding.sln to RipSharp.sln across all targets (restore, build, format, test, clean)
src/RipSharp.Tests/GlobalUsings.cs Added blank line after first using statement for formatting consistency

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@mapitman mapitman merged commit a8efee4 into main Jan 11, 2026
7 checks passed
@mapitman mapitman deleted the bug/fix-makefile branch January 11, 2026 19:33
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.

Makefile is broken after project rename

2 participants