build-backend
Installation
SKILL.md
Build Backend Skill
Use this skill to validate that all backend C# projects compile successfully without errors.
What This Skill Does
- Runs
dotnet buildto compile all .NET projects in the solution - Captures and parses compilation errors
- Reports errors with file and line number references
- Exits with failure status if any compilation errors are found
When to Use
- After implementing backend features in the Api project, Application project, or Worker project
- To validate that dependencies and package versions are correct
- Before running tests or other downstream validation steps
- To catch syntax errors or type mismatches early