I just noticed that when I call the following code from a console application
for (int i = 0; i < 10; i++)
{
Trace.WriteLine("Logging");
Debug.WriteLine("Logging Debug");
}
if I am targeting .net 4.0 there are no messages in the debugview application, although I do all the output.
If I switch to target 3.5, it looks fine.
What has changed and how can I fix it?
source
share