On Windows 8 RTM and just installed Vs2012 Ultimate RTM, I'm unable to create a .net 4.5 project nor a .net 4 or 4.5 ASP.NET MVC project. I've done a repair of VS2012, which did not fix it. Is there something obvious I'm doing wrong?
4 Answers
I also had the same problem.. Doing the following procedure solved it.
Copy the folder \packages\WPT
from the visual studio 2012 installer CD to your desktop.
Uninstall the following in this order..
- aspnetmvc4vs11tools.msi
- aspnetmvc4.msi
- aspnetmvc3vs11tools.msi
- aspnetmvc3.msi
Then install these in this order.
- aspnetmvc3.msi
- aspnetmvc3vs11tools.msi
- aspnetmvc4.msi
- aspnetmvc4vs11tools.msi
Trying to repair didn't fix the problem. You have to remove and install these..
Hope this will help...

- 3,384
- 3
- 35
- 61
-
@Sen Jacob not able to uninstall `aspnetmvcvs11tools`. i got a warning saying `A later version of Microsoft Asp.net MVC4- visual Studio 2012 Tools is already installed.` . how can i fix this . mvc4 is the latest version i have , i don't know which one is more higher than this – joshua Oct 08 '13 at 09:22
-
@joshua Are you using MVC4 for VS 2010? If yes, remove it and try again. – Sen Jacob Oct 09 '13 at 08:54
-
@joshua - did that remedy it? I'm in the same state. – Jake Hackl Oct 11 '13 at 20:04
-
@SenJacob , no pal i don't have VS2010 installed nor related tool. – joshua Oct 12 '13 at 05:31
-
@JakeHackl i did the brute force, formatted the whole goddam machine. but i wont suggest you to do this. – joshua Oct 12 '13 at 05:33
Your install is probably corrupted. VS 2012 needs .net 4.5 to run, so something has gone wrong if it's not available.
I would try uninstalling and reinstalling. It's brute force but it generally works.

- 1,545
- 2
- 14
- 14
-
Yep... I guess a repair doesn't really repair anything. Uninstall/Reinstall fixed it. – dotjosh Oct 05 '12 at 01:45
-
2The other answer below does not require a full uninstall + install and worked for me! (Windows 7 64-bit pro + VS2012 ultimate) – Christian Droulers Dec 17 '12 at 17:31
You probably do not have the Windows 8.1 SDK installed. Visual Studio 2012, nor its updates, link the .NET Framwork 4.5 libraries for development.
You don't have to install the full SDK if you are just looking for the option to build web apps, just the .NET Framework 4.5.1 option in the installer. The full install is about 1.1GB, but just the .NET installer is only 72MB.
For those reading this that have not updated their copy of Visual Studio 2012, make sure you also have these installed:
Hope this helps!

- 1,201
- 1
- 15
- 20