output-window

Visual Studio 2010 - Only View Output of a Specific Category

In Visual Studio 2010, it would be beneficial to only view the output of a given debug category.. I.E. Debug.WriteLine("debugging", "category1"); Debug.WriteLine("debugging2", "category2"); We have numerous developers developing on the same project and theres a lot going on in the output window that we dont need to see... if we could...

Redirect the output (stdout, stderr) of a child process to the Output window in Visual Studio

At the moment I am starting a batch file from my C# program with: System.Diagnostics.Process.Start(@"DoSomeStuff.bat"); What I would like to be able to do is redirect the output (stdout and stderr) of that child process to the Output window in Visual Studio (specifically Visual C# Express 2008). Is there a way to do that? (Additiona...