run-tests
Installation
SKILL.md
Run .NET Tests
Detect the test platform and framework, run tests, and apply filters using dotnet test.
When to Use
- User wants to run tests in a .NET project
- User needs to run a subset of tests using filters
- User needs help detecting which test platform (VSTest vs MTP) or framework is in use
- User wants to understand the correct filter syntax for their setup
When Not to Use
- User needs to write or generate test code (use
writing-mstest-testsfor MSTest, or general coding assistance for other frameworks) - User needs to migrate from VSTest to MTP (use
migrate-vstest-to-mtp) - User wants to iterate on failing tests without rebuilding (use
mtp-hot-reload) - User needs CI/CD pipeline configuration (use CI-specific skills)
- User needs to debug a test (use debugging skills)