Sunday, August 14, 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 are coming soon.

http://lab.msdn.microsoft.com/vs2005/downloads/101samples/default.aspx

NUnit 2.2 and Visual Studio .NET 2005 beta 2

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 version="v1.0.3705" />
</startup>

and remember that you have to change it both in the
nunit-gui.exe.config and nunit-console.exe.config files.

v2.0.50215 is for beta 2 of VS 2005 .NET.

Best thing to do is to check what version of .NET framework you're running.
To do it, see folder names in WindowsPathMicrosoft.NETFramework folder (for ex. C:WINDOWSMicrosoft.NETFramework)

Plus it seems that NUnit 2.2 doesn't work when run as an external program while debugging from VS .NET 2005.
When you click Run nothing happens.

Try to download NUnit 2.2.2, it worked for me.

Sunday, August 7, 2005

Learn Visual Studio 2005 Express Edition

This video series is designed specifically for individuals who are interested in learning the basics of how to create applications using Visual Basic 2005 Express Edition and Visual C# 2005 Express Edition. This includes over 10 hours of video-based instruction that walks from creating your first "Hello World" application to a fully functioning RSS Reader application. Learn how to write your first application today!!

Click here for the videos