Skip to content

Commit a8efee4

Browse files
authored
fix: update Makefile to use RipSharp.sln (#41)
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
1 parent 1719df3 commit a8efee4

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ help:
1515

1616
# Restore NuGet packages
1717
restore:
18-
dotnet restore media-encoding.sln
18+
dotnet restore RipSharp.sln
1919

2020
# Build the solution
2121
build: restore
22-
dotnet build media-encoding.sln
22+
dotnet build RipSharp.sln
2323

2424
# Run code formatter
2525
format: restore
26-
dotnet format media-encoding.sln
26+
dotnet format RipSharp.sln
2727

2828
# Run tests
2929
test: build
30-
dotnet test media-encoding.sln
30+
dotnet test RipSharp.sln
3131

3232
# Clean build outputs
3333
clean:
34-
dotnet clean media-encoding.sln
34+
dotnet clean RipSharp.sln

src/RipSharp.Tests/GlobalUsings.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Global using directives for test files
22
global using AwesomeAssertions;
3+
34
global using RipSharp.Abstractions;
45
global using RipSharp.Core;
56
global using RipSharp.MakeMkv;

0 commit comments

Comments
 (0)