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
Copy file name to clipboardExpand all lines: docs/csharp/cs-dev-kit-faq.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -193,6 +193,22 @@ C# Dev Kit requires that it has built your project successfully before tests wil
193
193
194
194
Build your solution by right-clicking on the solution in the Solution Explorer and select **Build** or `kb(workbench.action.tasks.build)`. Once the build has been completed, your tests will appear in the Test Explorer panel.
195
195
196
+
### How do I collect logs for troubleshooting issues with Test Explorer?
197
+
198
+
If you are encountering issues with Test Explorer, you can enable diagnostic logging to gather more information for troubleshooting:
199
+
200
+
1. Increase Test Explorer verbosity:
201
+
Navigate to the C# Dev Kit settings and increase the Test Explorer Verbosity setting from `minimal` to `diagnostic`. This will generate more detailed logs.
202
+
2. Check the Output Window:
203
+
Open the Output window in Visual Studio Code, and select **C# Dev Kit - Test Explorer** from the dropdown. Diagnostic messages will appear with a `[dev]` prefix.
204
+
3. Collect the following information:
205
+
When reporting an issue, ensure you include:
206
+
- The diagnostic logs from the Output window.
207
+
- Your operating system and version (for example, Windows 10, macOS 13).
208
+
- The version of the C# Dev Kit extension you are using. Go to the Extensions view, and hover over the extension to view the version information.
209
+
210
+
This information will help in diagnosing and resolving the issue more efficiently.
0 commit comments