Biohazard
Biohazard

Reputation: 103

Visual Studio 2012 missing frameworks

I have installed Visual Studio 2012 today, and i was excited, because i wanted to experiment with the latest framework version (.net 4.5). But it seems like Visual Studio 2012 doesnt show .net 4.0 and 4.5 in the New Projects dialog. I have had a simlar problem with Visual Studio 2010, but the lower framework versions (3.0, 2.0) didnt show up there. Does anyone know how to get them to show up? Thanks :)

Upvotes: 10

Views: 11740

Answers (5)

h0ckey09
h0ckey09

Reputation: 89

I had this issue with VS2012 and fixed it by using a working install on another PC.

Copy the C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework folder from the good install into the folder on the failed install.

Target frameworks showed back up when I started VS2012, haven't run into any issues since.

Upvotes: 1

trieste
trieste

Reputation: 1

I have the similar problem.Tried these, but none of them worked: - repair VisualStudio 2012 - uninstall and reinstall VisualStudio 2012 - install VisualStudio 2013

This worked for me: - add or remove programs-> Microsoft .NET Framework 4 Multi-Targeting Pack right click ->Repair

Upvotes: 0

Khanna Ankur
Khanna Ankur

Reputation: 11

I am using Visual studio 2012 ultimate WIN 7 32 bit. I didn't need to uninstall VS. I have just repaired it and now it's working for me.. After repaired it I got this error msg. http://blogs.msdn.com/b/mandi/archive/2013/08/21/visual-studio-2012-quot-the-event-log-file-is-full-quot-error-message.aspx

I simply ignore it and using it..

Upvotes: 0

Neil Monroe
Neil Monroe

Reputation: 1200

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!

Upvotes: 5

Scott Koland
Scott Koland

Reputation: 759

It is most likely the case that your VS 2012 install is corrupted. Uninstalling and reinstalling it should fix this issue.

Others have documented this issue (with both VS 2012 RP and RTM):

VS2012 RTM missing .net 4.5 and mvc project templates

http://social.msdn.microsoft.com/Forums/en-US/vssetup/thread/17ff0bb3-e37e-4978-a5a1-c30a8cef1dfe

Upvotes: 1

Related Questions