← Back to list

rebuild-clean
by aalmada
Full-stack .NET online book store application with event-sourced backend API and Blazor frontend, orchestrated by Aspire.
⭐ 13🍴 0📅 Jan 24, 2026
SKILL.md
name: rebuild-clean description: Clean and rebuild the solution to ensure a fresh state. Use this when the user faces transient build errors or stale artifacts.
To ensure a clean build state and resolve transient compilation issues, follow this process:
-
Stop Background Processes
- Ensure no background
dotnetprocesses are running that might lock files. - Check for running Aspire instances or test hosts.
- Ensure no background
-
Clean Solution
- Run
dotnet cleanin the root directory. - This removes all intermediate output and binaries.
- Run
// turbo 3. Rebuild
- Run
dotnet buildin the root directory to compile the entire solution from scratch.
- Verify and Report
- Check the output for any persistent errors.
- If the build succeeds, notify the user: "✅ Workspace is clean and builds successfully."
- If errors persist, they are likely genuine code issues rather than stale artifacts.
- Use
grep_searchorread_fileto investigate the specific error messages.
When to Use
- Build errors that seem inconsistent
- After major dependency changes
- When switching branches with significant changes
- Stale artifact issues
- After package version updates
Related Skills
Used By:
/verify-feature- May reference this for clean builds
Next Steps:
/verify-feature- Full verification after clean rebuild/run-unit-testsor/run-integration-tests- Test the rebuilt solution
See Also:
- getting-started - Build instructions
- aspire-guide - Running the application
Score
Total Score
75/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon

