dotnet-test

Installation
SKILL.md

.NET Test Execution

Basic Test Commands

# Run all tests in solution
dotnet test

# Run tests in specific project
dotnet test tests/MyApp.Tests/MyApp.Tests.csproj

# Run without build (faster if already built)
dotnet test --no-build

# Run without restore
dotnet test --no-restore

Test Filtering

Installs
6
GitHub Stars
3
First Seen
Jan 25, 2026
dotnet-test — doubleslashse/claude-marketplace