Is there a way to save the list of events shown in the Visual Studio 2015 Diagnostic Tools Events tab to a file?
相关问题
- Is It possible to build asp.net core project using
- Visual Studio — does not create exe file
- Error executing 010_add_platform_class.js using VS
- Visual Studio 2015 : SQL Data Source : Unable to r
- Dragging the instruction pointer backward while de
相关文章
- Build errors of missing packages in Visual Studio
- Visual Studio 2015 JSX/ES2015 syntax highlighting
- Edit & Continue doesn't work
- Git SubModule Visual Studio
- Cannot add a Data Source in web project using the
- Microsoft Visual Studio 2015 is busy
- Predefined type System.Object is not defined or im
- Visual Studio Build Error “csc.exe” exited with co
It doesn't seem like there is a way to do this currently, but it has been suggested as a future improvement here: https://visualstudio.uservoice.com/forums/121579-visual-studio-ide/suggestions/11080035-allow-excel-export-for-diagnostic-tools-events
You can persist a list of exceptions reported in Events tab by enabling IntelliTrace recordings in Tools > Options > IntelliTrace > Advanced. This will save IntelliTrace's *.iTrace file with a list of exceptions on disk. Later you can open this file with Visual Studio.
You can find more information regarding *.iTrace files here and here.