Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between .NET Framework 4.6.1 Targeting Pack and .NET Framework 4.6.1 Runtime?

I want to develop .net framework 4.6.1 applications using Visual studio 2012.So, I tried to install 4.6.1 developer pack for visual studio 2012.But when I go to this link to install the framework.It provides me two links, one for .NET Framework 4.6.1 Targeting Pack and the other for .NET Framework 4.6.1 Runtime. Which one of these shall I install?

like image 718
V K Avatar asked Feb 15 '16 06:02

V K


People also ask

What is the difference between NET Framework developer pack and runtime?

To use the framework with Visual Studio 2012 or later install the developer type version. The runtime type version is a lighter version, meant to run applications on servers. This runtime version doesn't have the information/extensions that Visual Studio needs, so Visual Studio can't use them.

What is .NET Framework targeting pack?

NET Framework 4.6 Targeting Pack is a package that enables developers to build applications targeting the . NET Framework 4.6 using either Visual Studio 2013, Visual Studio 2012 or third party IDEs. You need to download and install the . NET Framework 4.6 prior to installing the targeting pack.

Does NET Framework developer pack include runtime?

Build apps - Dev Pack. The developer pack is used by software developers to create applications that run on .NET Framework, typically using Visual Studio. Run apps - Runtime. The runtime includes everything you need to run existing apps/programs built with .NET Framework.

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.


1 Answers

To use the framework with Visual Studio 2012 or later install the developer type version.

The runtime type version is a lighter version, meant to run applications on servers. This runtime version doesn't have the information/extensions that Visual Studio needs, so Visual Studio can't use them.

Check why at was-the-developer-pack-originally-called-sdk

Update(2018-01-08)

Currently, the download page is .NET SDKs for Visual Studio. First column has the Developer Pack versions, for Visual Studios, the middle column as the Runtime versions to install on production servers.

like image 195
MiguelSlv Avatar answered Oct 18 '22 16:10

MiguelSlv