Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ help:

# Restore NuGet packages
restore:
dotnet restore media-encoding.sln
dotnet restore RipSharp.sln

# Build the solution
build: restore
dotnet build media-encoding.sln
dotnet build RipSharp.sln

# Run code formatter
format: restore
dotnet format media-encoding.sln
dotnet format RipSharp.sln

# Run tests
test: build
dotnet test media-encoding.sln
dotnet test RipSharp.sln

# Clean build outputs
clean:
dotnet clean media-encoding.sln
dotnet clean RipSharp.sln
1 change: 1 addition & 0 deletions src/RipSharp.Tests/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Global using directives for test files
global using AwesomeAssertions;

global using RipSharp.Abstractions;
global using RipSharp.Core;
global using RipSharp.MakeMkv;
Expand Down
Loading