You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update dotnet-test to reflect latest preview behavior (#46279)
* Update dotnet-test to reflect latest preview behavior
* Update unit-testing-with-dotnet-test.md
* Apply suggestions from code review
Co-authored-by: David Pine <[email protected]>
---------
Co-authored-by: David Pine <[email protected]>
Copy file name to clipboardExpand all lines: docs/core/testing/unit-testing-with-dotnet-test.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -90,12 +90,12 @@ To address the issues encountered when running `dotnet test` with MTP in VSTest
90
90
To enable this mode, add a `dotnet.config` file to the root of the repository or solution.
91
91
92
92
```ini
93
-
[dotnet.test:runner]
93
+
[dotnet.test.runner]
94
94
name = "Microsoft.Testing.Platform"
95
95
```
96
96
97
-
> [!NOTE]
98
-
> The format will change from `dotnet.test:runner` to `dotnet.test.runner` in .NET 10 SDK Preview 4.
97
+
> [!IMPORTANT]
98
+
> The `dotnettest` experience for MTP is only supported in `Microsoft.Testing.Platform` version 1.7 and later.
99
99
100
100
Since this mode is specifically designed for Microsoft.Testing.Platform, neither `TestingPlatformDotnetTestSupport` nor the additional `--` are required.
0 commit comments