I want to redirect output from our code review tool that we are writing in VS2010, so that it's messages are parsed by Vs2010 and we can click on them to goto file, line, column.
I vaguely remember learing about this in vs2005, you output your text to a certain kind of window, with the exact format below, and then vs would parse the message and you could click on it to goto the specific location...
D:\Project Files\CIS3G\Webapp_Test_BLL\Evaluation\Reports\TestEvaluationHistoryBLL.cs(27,44): warning CS0649: Error text
It was constructed thusly :
full file path:[error or warning type]:error message
Then it just worked "magically"..
But this is all I can remember from a conversation ~10 years ago about how to do this. Does anyone remember what I'm talking about and can direct me to information about how to make this work with output from a tool we write to work within visual studio 2010?
Maybe a tutorial?
Talks about doing it in the build, but I'd like to be able to run the code review tool independantly and get it to work too...