What problem does it solve? Determining whether a .NET test project uses VSTest or Microsoft.Testing.Platform, and which framework (MSTest, xUnit, NUnit, TUnit) it runs on, requires checking multiple files with version-dependent rules that are easy to get wrong. ## Core Features & Use Cases - Framework Detection: Identifies MSTest, xUnit, NUnit, or TUnit from package references and SDK declarations in .csproj and central package management files. - Platform Detection: Distinguishes VSTest from Microsoft.Testing.Platform using global.json runner settings on .NET 10+ or MSBuild properties on .NET 8/9. - Use Case: Before running or migrating tests, an AI agent consults this reference to correctly determine that a project with <EnableMSTestRunner>true</EnableMSTestRunner> in Directory.Build.props uses MTP, avoiding incorrect VSTest filter syntax. ## Quick Start Ask the AI to determine which test platform and framework a given .NET test project uses by inspecting its global.json, .csproj, and Directory.Build.props files.