We have many new computers and have some needed old apps created using .net 1.0 and some created with .net 1.1. Will these apps work if I install only .net 3.5?

The applications are desktop apps.

link|improve this question

stackoverflow.com/questions/2642301/… might be of help to you. – Citroenfris Aug 19 '11 at 14:32
Depending on OS, you might have everything installed already. – Mrchief Aug 19 '11 at 14:34
From that question, it looks like doing some testing is going to be your best bet. – Jennifer S Aug 19 '11 at 14:35
feedback

2 Answers

up vote 4 down vote accepted

It depends if the applications were compiled to specifically require the older version. If yes, then you need to install the framework version against which the applications were built in order to have them run correctly. If not, they should be able to pick up 2.0 if that's installed.

See this link for more information.

link|improve this answer
feedback

Afaik no. .NET X can run apps for older X, but only if older X >=2.0

1.0 and 1.1 must seen as a different framework

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.