Rob Haupt
Rob Haupt

Reputation: 2154

How does .Net Framework versions handle backwards compatibility

I know that XP didn't ship with a version of .NET Framework and I'm fairly certain that .NET 2.0 shipped with Vista. My question is, will installing .Net 2.0 on XP also install support for .Net 1.1 applications as well? Also, is vista 1.1 compatible out of the box.

Upvotes: 3

Views: 2919

Answers (2)

Bob King
Bob King

Reputation: 25866

"Not really" to the first question. .NET 1.1 is an independent framework compared to 2.0. They can happily sit side by side on the same machine. Vista does not include 1.1. If you are trying to use 2.0 to run 1.1 applications, there may be problems. Yes to the second question: It can be installed.

Upvotes: 4

ryeguy
ryeguy

Reputation: 66891

Vista includes the .NET Framework versions 2.0 and 3.0. As others have said, 2.0 can run 1.1 applications, but 2.0 changed some stuff that may break your 1.1 apps.

Upvotes: 2

Related Questions