What problem does it solve? Slow .NET builds waste developer time, but optimizing without measurements is guesswork. This Skill provides a structured method to measure cold, warm, and no-op build times, then apply targeted optimizations like MSBuild Server, artifacts output, static graph builds, and dependency graph trimming. ## Core Features & Use Cases - Baseline Measurement: Capture cold, warm, and no-op build timings with binary logs to identify whether incremental build, restore, or compilation is the bottleneck. - Optimization Techniques: Enable MSBuild Server, UseArtifactsOutput layout, deterministic builds, parallel tuning with -m, and static graph builds via /graph. - Dependency Graph Trimming: Remove redundant ProjectReferences, use ReferenceOutputAssembly="false" for build-order-only dependencies, and shorten the critical path. - Use Case: Your solution's no-op build takes 45 seconds. Use this Skill to baseline all three scenarios, discover incremental build is broken, then follow the decision tree to the incremental-build skill for the fix. ## Quick Start Ask the AI to measure cold, warm, and no-op build times for your .NET solution and recommend optimizations based on the results.