vote up 1 vote down star

I am writing a custom tool and I currently have it doing what I want as far as functionality. I would like to be able to write to Visual Studio if something goes wrong. (Incorrectly formatted code or whatever).

Are there any standards for this? Right now I basically can force the tool to fail and Visual Studio puts in a warning that it has done so. I'd like a category in the Output window with any resulting messages I want to send. I could also live with a more descriptive task/warning in the Error list window.

flag

60% accept rate
Why isn't writing to standard output working for you? – avakar Jul 7 at 19:43
writing a message to Console.Write doesn't give me anything in the output window. – Jeff Martin Jul 7 at 20:11

2 Answers

vote up 1 vote down

If you want anything to appear in the Output window, it has to come from stdout. To do this, your app needs to be linked as a "console" app. Set the /SUBSYSTEM:CONSOLE flag in the project's property page, under Linker/System set the SubSystem property to CONSOLE.

Once you have your output in the window, if you include the text "Error:" it will appear as an error, or if you set "Warning:" it will appear as a warning. If your error text begins with a path/filename, followed by a line number in parenthesis, the IDE will recognize it as a "clickable" error, and navigate you automatically to the faulting line.

link|flag
I am doing this in C# and there is no /subsystem stuff in the project property, do i need to make a console app to do this? its working right now as a DLL, but obviously i'm not getting the output. – Jeff Martin Jul 8 at 14:55
It is a DLL? How is it being invoked? Normally, the output window captures the tools that are executed in the tool chain that MSBuild constructs, but as far as I knew those all were independent executables, and MSBuild would simply capture all stdout for display in the window. It just occurred to me that your custom tool may not be related to building. The "Output" window is reserved for the build process. If you are looking to put out run-time information, you should be using the debug window (with OutputDebugString() or Debug.Print() or whatever.) – jadeters Jul 8 at 16:51
vote up -1 vote down

Hello,

You can use the Debug and/or Trace classes. There is some information here: http://msdn.microsoft.com/en-us/library/bs4c1wda(VS.71).aspx

Best of luck.

link|flag
I tried trace.write (message, category) prior to asking this and it didn't output. – Jeff Martin Jul 7 at 20:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.