Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install every version or latest version is enough?

Tags:

.net

I'm very confused with dotnet framework installation.

Even though I've installed the latest version (4.0), some dotnet framework-based programs told me that I need to install version 1.1 or 2.0.

So, I'm curious to know whether I need to install every version of DotNet framework so that every kind of such program can run. Does it cause due to programmer's badly checks?

Thank you.

like image 996
jack Avatar asked Aug 01 '10 06:08

jack


1 Answers

It really depends on what version of the framework that the application was designed to run on, there are a few versions of the framework and a few of the runtime. Sometimes an application can be written for .NET 3.5 but has references to libraries that were written against .NET 1.1 in which case you would need both installed.

There is a fair breakdown of the Framework, Runtime and Language reference In this Answer.

like image 133
Quintin Robinson Avatar answered Oct 20 '22 05:10

Quintin Robinson