Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Targeting pack for .NET 4.5.2 not installed

When opening an already existing solution in Visual Studio, it says

The C# project "..." is targeting ".NETFramework,Version=v4.5.2", which is not installed on this machine.

Screenshot error message

I have already tried

  • Selecting option 2, but it brings me to a generic Microsoft search page (http://www.microsoft.com/en-us/default.aspx)
  • Installing the .NET Framework 4.5 SDK (as proposed by this answer) enter image description here
like image 754
Thomas Weller Avatar asked Jan 13 '15 21:01

Thomas Weller


People also ask

What is Microsoft .NET framework 4.5 multi-targeting pack?

2 Multi-Targeting Pack Language Packs: Contains the IntelliSense files to display help while building apps that target the . NET Framework 4.5. 2 through Visual Studio and third party IDEs.

What is .NET targeting pack?

NET Framework 4.6 Targeting Pack is a package that enables developers to build applications targeting the . NET Framework 4.6 by using either Visual Studio 2013, Visual Studio 2012 or third-party IDEs.

How do I install a .NET developer pack?

From the developer pack download page, choose Download. Next, choose Run or Save, and follow the instructions when prompted. You can also install the developer pack or targeting pack for a specific version of . NET Framework by selecting it from the optional components in the .

How do I enable .NET Framework 4.5 on Windows?

Select Start > Control Panel > Programs > Programs and Features. Select Turn Windows features on or off. If not already installed, select Microsoft . NET Framework and click OK.


2 Answers

Official list of all targeting packs: https://www.microsoft.com/net/targeting. Make sure you download the "developer pack", not "runtime".

Direct links to offline installers: 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2

This problem seems to affect Visual Studio 2013 and Visual Studio 2015. The targeting packs are included in Visual Studio 2017.

Outdated links:

  • http://getdotnet.azurewebsites.net/target-dotnet-platforms.html
  • http://blogs.msdn.com/b/dotnet/p/dotnet_sdks.aspx

How I found that link

First, choose option 1, "Change the target to .NET Framework 4.5"

Next, go to the project options of the affected project, select "Application" and then choose "Install other frameworks..." from the list of target frameworks:

Screenshot Change target framework

This brings you to a website where you can choose your version of Visual Studio and download the targeting pack (called developer pack).

Website screenshot

like image 113
Thomas Weller Avatar answered Sep 23 '22 00:09

Thomas Weller


I had the same issue. When I loaded the project it always asked for the .NET framework 4.5.2 and I was not able to install it because it always said that it was already there.

What worked for me was to install the Microsoft .NET Framework 4.5.2 Developer Pack from https://www.microsoft.com/en-us/download/details.aspx?id=42637

Give it a try. It may work for you as well.

like image 37
MAO - Diego Rincon Avatar answered Sep 24 '22 00:09

MAO - Diego Rincon