Is it possible to export the error list from Visual Studio 2008?
I would like to know if it is somehow possible to export the Visual Studio 2008 error开发者_如何学Go list, preferably in Excel format.
Thanks.
- In errors window
Ctrl+A
,Ctrl+C
- Paste in Excel
That's very... interesting, to say the least.
You can press Ctrl+A in "Error List" window to select all items, then Ctrl+C to copy them to the Clipboard and then paste in Excel.
Not automated, but:
- Click anywhere in the error list
- Type: CTRL-A, CTRL-C
- Open Excel
- Type: CTRL-V
You could probably automate this quite easily with a Visual Studio macro, which could be as simple as this:
DTE.Windows.Item(EnvDTE80.WindowKinds.vsWindowKindErrorList).Activate
DTE.ExecuteCommand ("Edit.SelectAll")
DTE.ExecuteCommand ("Edit.Copy")
That's been generated by recording a macro (Tools > Macros > Record). The exercise of moving it out of the clipboard and into a copy of Excel is one that I'll leave for you, as I've used Excel automation before and never want to again ;=)
Error List Manager – Visual Studio Plugin
Error List Manager extension lets you perform extra actions on Visual Studio’s Error List Window like Export, Email, Print.
http://shemeerns.com/error-list-manager-plugin/
精彩评论