diff --git a/docs/core/testing/unit-testing-with-dotnet-test.md b/docs/core/testing/unit-testing-with-dotnet-test.md index 64505d8d07fcf..b213ad7be75b8 100644 --- a/docs/core/testing/unit-testing-with-dotnet-test.md +++ b/docs/core/testing/unit-testing-with-dotnet-test.md @@ -90,13 +90,10 @@ To address the issues encountered when running `dotnet test` with MTP in VSTest To enable this mode, add a `dotnet.config` file to the root of the repository or solution. ```ini -[dotnet.test:runner] +[dotnet.test.runner] name = "Microsoft.Testing.Platform" ``` -> [!NOTE] -> The format will change from `dotnet.test:runner` to `dotnet.test.runner` in .NET 10 SDK Preview 4. - Since this mode is specifically designed for Microsoft.Testing.Platform, neither `TestingPlatformDotnetTestSupport` nor the additional `--` are required. > [!IMPORTANT]