What problem does it solve? Slow .NET builds are hard to fix without measurements, and optimization without a baseline is guesswork. This Skill establishes cold, warm, and no-op build baselines and then applies proven MSBuild optimization techniques. ## Core Features & Use Cases - Baseline Measurement: Capture cold, warm, and no-op build timings with binary logs to identify whether restore, compilation, or incremental checks are the bottleneck. - Optimization Techniques: Apply MSBuild Server, artifacts output layout, deterministic builds, dependency graph trimming, static graph builds (/graph), and parallel build tuning. - Decision Tree: Follow a structured flowchart that routes slow no-op builds to incremental-build fixes and slow cold builds to diagnostics or parallelism tuning. - Use Case: Your solution's no-op build takes 45 seconds. Use this Skill to baseline all three scenarios, confirm incremental build is broken, then move to the incremental-build skill to fix Inputs/Outputs. ## Quick Start Ask the AI to baseline my solution's build performance by measuring cold, warm, and no-op builds with binlogs and suggest optimizations.