What problem does it solve? Determining whether a .NET project uses VSTest or Microsoft.Testing.Platform, and which test framework (MSTest, xUnit, NUnit, TUnit) it runs, 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 by inspecting package references and SDK declarations in .csproj, Directory.Build.props, and Directory.Packages.props. - Platform Detection: Distinguishes VSTest from Microsoft.Testing.Platform using global.json test.runner settings on .NET 10+ or MSBuild properties like TestingPlatformDotnetTestSupport on .NET 8/9. - Use Case: Before running tests or migrating a project to Microsoft.Testing.Platform, use this reference to correctly identify the project's platform so the right CLI syntax and filter options are applied. ## Quick Start Ask the AI to detect which test platform and test framework this .NET project uses by inspecting its project files.