I have a visual studio 2008.

I have downloaded and installed a .NET 4.0 package.

But I still can't create a .net 4.0 applications. VS 2008 shows it can only create 2.0, 3.0, 3.5 applications.

link|improve this question

63% accept rate
feedback

3 Answers

up vote 1 down vote accepted

This is not possible. .NET 4.0 can only be used with Visual Studio 2010.

Visual Studio 2008 could target 2.0, 3.0 and 3.5 because there were all based on the same runtime and language (3.0 and 3.5 were essentially additional libraries and updated compilers). 4.0 however is a different runtime.

link|improve this answer
feedback

yes in VS 2008 you can't able to create .Net 4.0 applications.For that you need VS 2010

link|improve this answer
feedback

That's because VS2008 doesn't support .NET 4 as a target platform. For that you need either VS2010 or just use the compiler that ships with the framework (but then you will not have an IDE).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.