ryan
ryan

Reputation: 31

upgrading 1.1 Framework to 4.0

I guess i'm wondering if i need to upgrade one version at a time (2.0, 3.5, 4.0) or if I can just directly from 1.1 to 4.0? Thanks.

Upvotes: 3

Views: 910

Answers (1)

James Curran
James Curran

Reputation: 103555

You can install the new version of the framework next to the existing one, so both are available. (That's the default --- It's actually a bit of work to get rid of the old one). The latest will install all the files it needs.

Note that v1.1 used one version of the CLR; 2.0, 3.0 & 3.5 used another, and 4.0 uses still another. So, if you need to run an application that specifically requires the v2.0 CLR, you need to install that also (but in theory, they all should be able to use the v4.0 CLR)

As for upgrading your code, no sense it going through multiple update iteration -- Just upgrade to the latest.

Upvotes: 4

Related Questions