Visual Studio 2010: Introducing new pitfalls

A couple of days ago I installed Visual Studio 2010 on my machine. In general it seems to be a fine release, especially when beefed up with Resharper V5 (I very, very much like the new Ctrl + Shift + Alt + A).

However, the new release managed to drive me nuts yesterday when I started a new demo project with the good old Console Project. It so appears that the Target Framework set in the Project properties is by default the new “.Net Framework 4 Client Profile”.

image

This is a limited subset which, if you can restrict yourself to the assemblies contained, allows for a smaller redistribution footprint.

However, as outlined in this msdn document (which also lists the available assemblies), when using this Target, you cannot reference any other assembly as those contained in the Client profile. Imagine my not-understanding-the-world-face when I added a reference, let R# do my code-completion and then realize that the compiler complained about a missing assembly reference ! Here, then a warning. If you intend to reference anything that is not contained in the client profile.

The second pitfall in using the Command line profile is the very controversially discussed decision to have a Console App default to x86 processor

 image

This setting is not changeable through the Visual studio IDE anymore once you add additional projects to your solution. I learned it the hard way (is there any other way?) when writing Unit Tests in a separate class library project and referencing the console project. The only thing that the R# task runner was able to say was a “BadImageFormatException” which under the circumstances absolutely makes sense since the class library is allowed to run in any processor mode.

See also Rick Byers - AnyCPU Exes are usually more trouble than they’re worth (btw, I know the issues, thank you very much) and New C# Console application targets x86 by default (Microsoft Connect)

Personally I don’t get why Microsoft makes such a decision if there quite obviously are a large number of developers who want to decide for themselves what processor architecture to target. If you want to change it – bad luck. You can enter the .sln with an editor though an add the line as shown in the following screenshot…

image