Can a 1.0 .NET App run on a 1.1 Framework?
-
I'm wondering whether a 1.0 .NET App (C#) can work / run on a machine that has the 1.1 .NET Framework Runtime installed?
Unless an inappropriate .config file tells otherwise, the answer is yes. The application will start, and is very likely to run fine. Note there is a difference between a machine with only the 1.1 CLR installed, and a machine with both CLRs installed.
-
Unless an inappropriate .config file tells otherwise, the answer is yes. The application will start, and is very likely to run fine. Note there is a difference between a machine with only the 1.1 CLR installed, and a machine with both CLRs installed.
-
If both CLRs are installed, then the application will start using CLR 1.0, unless a .config file tells otherwise. If only CLR 1.1 is installed, then the application will start using CLR 1.1.
-
If both CLRs are installed, then the application will start using CLR 1.0, unless a .config file tells otherwise. If only CLR 1.1 is installed, then the application will start using CLR 1.1.
-
I'm wondering whether a 1.0 .NET App (C#) can work / run on a machine that has the 1.1 .NET Framework Runtime installed?
-
We should make links like this more visible both in the documentation as well as public newsgroups. Please check: http://www.gotdotnet.com/team/changeinfo/default.aspx There is a wealth of information that talkes about the various .config file changes that have to be done to modify your application to run under various Fx version scenarios. There's also a link that talks about various API breaking changes. aL Albert Ho .NET Developer Evangelist Microsoft - Norcal