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
docs: add telemetry documentation to extensions page (#4429)
- List all built-in extensions (Code Coverage, TRX Reports, Telemetry)
- Add tip explaining how to opt out by using separate packages
- Add Telemetry section with environment variable opt-out instructions
- Link to Microsoft's telemetry documentation
Closes#4424
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Telemetry is provided via the `Microsoft.Testing.Extensions.Telemetry` NuGet package.
136
+
137
+
**✅ Included automatically with the TUnit package**
138
+
139
+
This extension enables Microsoft to collect anonymous usage metrics to help improve the testing platform. No personal data or source code is collected.
140
+
141
+
#### Opting Out
142
+
143
+
You can disable telemetry by setting an environment variable:
144
+
145
+
```bash
146
+
# Linux/macOS
147
+
export TESTINGPLATFORM_TELEMETRY_OPTOUT=1
148
+
149
+
# Windows
150
+
set TESTINGPLATFORM_TELEMETRY_OPTOUT=1
151
+
```
152
+
153
+
Alternatively, you can use `DOTNET_CLI_TELEMETRY_OPTOUT=1` which also disables .NET SDK telemetry.
0 commit comments