Back to list
aalmada

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:

  1. Stop Background Processes

    • Ensure no background dotnet processes are running that might lock files.
    • Check for running Aspire instances or test hosts.
  2. Clean Solution

    • Run dotnet clean in the root directory.
    • This removes all intermediate output and binaries.

// turbo 3. Rebuild

  • Run dotnet build in the root directory to compile the entire solution from scratch.
  1. 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_search or read_file to 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

Used By:

  • /verify-feature - May reference this for clean builds

Next Steps:

  • /verify-feature - Full verification after clean rebuild
  • /run-unit-tests or /run-integration-tests - Test the rebuilt solution

See Also:

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