Posted in Visual Studio on Aug 14th, 2005
If you get BadImageFormatException error or you want to work with NUnit 2.2 and VS .NET 2005 beta 2, you must add
<supportedRuntime version="v2.0.50215" />
to <startup> section
so it looks like this:
<startup>
<supportedRuntime version="v2.0.50215" />
<supportedRuntime version="v1.1.4322" />
<supportedRuntime version="v1.0.3705" />
<requiredRuntime […]
Read Full Post »
Posted in Visual Studio on Jun 27th, 2005
My friend recently had a problem with slow debugging. It took a few minutes before debugger went to the next statement.
Clearing all breakpoints helped. He had a lot of them. So if you have the same problem, check how many breakpoints you have defined.
Read Full Post »
Posted in Visual Studio on Jun 25th, 2005
There are two main things that drives me crazy:
Erasing event handlers.
Sometimes Visual Studio .NET 2003 erases event handlers.
What I see is that it occurs after working in html mode. What you can do is attach events manually after the InitializeComponent() call, instead of using the properties editor.
“Close all documents” closes VS. NET […]
Read Full Post »