.NET Framework Version

I had a little search and I was wondering if the support for the .NET platform is compatible.

The real question is: if there is a program using the .NET Framework 1.1, can I install 3.5 and do this, or do I need to install 1.1, and then if something uses 3.5, do I also need to install 3.5?

+3
source share
5 answers

Unfortunately, you will have to install both versions. The old version of the framework is not automatically associated with newer versions.

+2
source

I believe that if you install the 3.5 framework, you will get everything back to environment 2.0. Structure 3.5 (and 3.0) runs in the CLR 2.0 environment, so you really get version 2.0 with the additional goodness of 3.0 and 2.5 on top of it.

1.1.

: C:\Windows\Microsoft.NET\Framework

+2

-, 3.5, . , , .Net , 1.1, 2.x 3.5 . .

0

.NET 2.0 .NET Framework ( ). 1.1 , .

, .NET 3.5, , .NET 3.5 . , , .

0

Many, perhaps most applications built for .NET 1.1 will work in later versions of the framework.

But there have been some changes, so the only way to make sure that your build of applications for .NET 1.1 will run on .NET 2.0 or later is to check it.

Microsoft has documented known changes between .NET 1.1 and .NET 2.0 (see http://blogs.msdn.com/brada/archive/2005/11/14/492561.aspx ), but the links to this content seem to be broken :(

And I know at least one undocumented interrupt change due to an error.

0
source

Source: https://habr.com/ru/post/1696954/


All Articles