What problem does it solve? MSBuild builds can be slow before any compilation even starts because project evaluation—processing imports, properties, items, and globs—takes too long. This Skill helps you pinpoint why evaluation is slow and apply targeted fixes. ## Core Features & Use Cases - Evaluation Diagnosis: Analyze evaluation durations, multiple evaluations per project, and differing global properties using the binlog MCP server or text-log replay. - Glob and Import Optimization: Detect expensive glob patterns walking node_modules, .git, bin/obj, and deep import chains (>20 levels), then fix them with DefaultItemExcludes and import consolidation. - Use Case: Your solution build spends 30 seconds before compiling anything. Use this Skill to run dotnet msbuild -pp:full.xml, discover a 15K-line preprocessed output caused by a broad **/*.cs glob, and fix it with DefaultItemExcludes. ## Quick Start Analyze my build.binlog to find why MSBuild evaluation is slow and suggest optimizations for globs and imports.