What problem does it solve? Slow .NET builds are hard to diagnose without visibility into where time is spent. This Skill analyzes MSBuild binary logs to pinpoint the exact targets, tasks, and configurations causing build slowdowns. ## Core Features & Use Cases - Binlog Performance Analysis: Replay binary logs with performance summaries to identify expensive targets and tasks sorted by cumulative time. - Bottleneck Detection: Detect seven common bottleneck categories including slow ResolveAssemblyReference, Roslyn analyzer overhead, serialization bottlenecks, excessive Copy tasks, evaluation overhead, redundant NuGet restore, and poor project graph shape. - Threshold-Based Diagnosis: Apply concrete thresholds such as RAR over 5 seconds, analyzers consuming over 30% of Csc time, single targets dominating over 50% of build time, and node utilization below 80%. - Use Case: A team's solution build takes 8 minutes. Use this Skill to replay the binlog, discover that analyzers consume 45% of compile time, and conditionally disable them in the dev inner loop while preserving CI enforcement. ## Quick Start Analyze my build.binlog file and tell me which targets and tasks are making my MSBuild build slow.