What problem does it solve? MSBuild build failures are often unclear from console output alone, especially in multi-project builds with cascading errors. This Skill analyzes .binlog files to pinpoint errors, warnings, target execution order, and project evaluation data without manual log digging. ## Core Features & Use Cases - Structured binlog inspection: Query errors, warnings, MSBuild properties, items, and target execution details through the binlog MCP server instead of parsing raw text. - Embedded file retrieval: Read project files (.csproj, .props, .targets) embedded in the binlog when source files are unavailable on disk. - Text-log replay fallback: Replay the binlog to diagnostic, errors-only, and warnings-only text logs when the MCP server is unavailable. - Use Case: A CI build fails with a vague CS0246 error across dozens of projects. Provide the build.binlog file and get the failing project, the exact target that failed, and the property values that caused it. ## Quick Start Analyze the attached build.binlog file and tell me which project failed, why it failed, and which MSBuild targets were involved.