I have a really peculiar and annoying issue with a WinForms (VB) solution: for no apparent reason the console output doesn't appear anymore. It works in other solutions, but not in this specific one.
I did indeed install Telerik's JustCode and JustTrace. Then I played arouund with the new features, did some coding when I sometime later noticed that the debug output from my application (using Console.Writeline
) wasn't coming anymore. Build messages appear as do some VS messages, but not mine.
- I made sure I was checking the correct tab in the Output window.
- I restarted Visual Studio.
- I did a full reboot.
- I checked every option I could find, esp. Tools>Options>Debugging>Output Window and the options of the two Telerik tools) and everything was fine (and unchanged).
- I uninstalled the tools.
- I deleted the solution's .suo-file.
- I compared the .sln and .vbproj files to copies in our repository: no changes (in the relevant time frame).
Edits:
- I had the opportunity of running the solution on another computer; strangely with the same issues. That leads me to think it's got something to do with the .sln/.vbproj files.
- I redirected
Console.Out
to aFileStream
and the output was written into the file as expected. - I tried using
Console.OpenStandardOutput
, but without success.
Any ideas would be greatly appreciated. It's driving me crazy ...and it's only been a couple of hours...