Skip to content

Commit fc0b926

Browse files
committed
Rework table as bullet points
1 parent e300a7b commit fc0b926

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

docs/core/testing/unit-testing-mstest-sdk.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,34 @@ The concept of *profiles* allows you to select the default set of configurations
8383

8484
You can set the profile using the property `TestingExtensionsProfile` with one of the following three profiles:
8585

86-
* `Default` - Enables the recommended extensions for this version of MSTest.SDK. This is the default when the property isn't set explicitly.
8786
* `None` - No extensions are enabled.
87+
88+
* `Default` - Enables the recommended extensions for this version of MSTest.SDK. This is the default when the property isn't set explicitly.
89+
90+
Enables the following extensions:
91+
92+
* [Code Coverage](./unit-testing-platform-extensions-code-coverage.md#microsoft-code-coverage)
93+
94+
* [Trx Report](./unit-testing-platform-extensions-test-reports.md#visual-studio-test-reports)
95+
8896
* `AllMicrosoft` - Enable all extensions shipped by Microsoft (including extensions with a restrictive license).
8997

98+
Enables the following extensions:
99+
100+
* [Code Coverage](./unit-testing-platform-extensions-code-coverage.md#microsoft-code-coverage)
101+
102+
* [Crash Dump](./unit-testing-platform-extensions-diagnostics.md#crash-dump)
103+
104+
* [Fakes](./unit-testing-platform-extensions-fakes.md#fakes-extension) (MSTest.Sdk 3.7.0+)
105+
106+
* [Hang Dump](./unit-testing-platform-extensions-diagnostics.md#hang-dump)
107+
108+
* [Hot Reload](./unit-testing-platform-extensions-hosting.md#hot-reload)
109+
110+
* [Retry](./unit-testing-platform-extensions-policy.md#retry)
111+
112+
* [Trx Report](./unit-testing-platform-extensions-test-reports.md#visual-studio-test-reports)
113+
90114
Here's a full example, using the `None` profile:
91115

92116
```xml

0 commit comments

Comments
 (0)