What problem does it solve? MSBuild build failures often produce console output that is too terse or too noisy to identify the root cause, especially in multi-project solutions with cascading errors. This Skill reads the structured data inside a .binlog file to pinpoint errors, warnings, properties, and target execution details. ## Core Features & Use Cases - Structured binlog inspection: Query errors, warnings, MSBuild properties, items (PackageReference, ProjectReference), and target execution through the binlog MCP server tools. - Fallback text replay: When the MCP server is unavailable, replay the binlog into diagnostic, errors-only, and warnings-only text logs with dotnet msbuild and search them with grep. - Use Case: A CI build fails with a vague CS0246 error across several projects. Point the Skill at the captured build.binlog to trace which project failed, inspect its evaluated properties and references, and identify the missing dependency. ## Quick Start Analyze the build.binlog file in this repository and explain why the build failed, listing the errors and the projects that produced them.