Sebastian Wojciechowski’s WebLog

.NET Developer

Archive for August 14th, 2005

101 Samples for Visual Studio 2005

Microsoft has provided 101 samples for Visual Studio 2005 for download on MSDN website. Samples are avaible both in C# and VB.NET .
They have been written and tested with Beta 2 of Visual Studio 2005
Right now there are 4 main categories:

Base Class Libraries
Data Access
Web Development
Windows Forms

plus the remaining 51 samples […]

Read Full Post »

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 »