Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Saving the list of events from Diagnostic Tools in VS2015

Is there a way to save the list of events shown in the Visual Studio 2015 Diagnostic Tools Events tab to a file?

like image 949
Dean Kuga Avatar asked Apr 01 '16 20:04

Dean Kuga


2 Answers

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

like image 172
PRS Avatar answered Oct 19 '22 19:10

PRS


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.

like image 1
Andrey Kriachko Avatar answered Oct 19 '22 19:10

Andrey Kriachko