views:

62

answers:

1

What all versions need to be present on a user machine if I want to install an application (desktop wpf) made mostly out of .net 3.5 SP1? From your experiences ?

A: 

WPF requires at least .NET 3.0 to be installed on the client machine. If you referenced System.Core and used LINQ you might need .NET 3.5.

Darin Dimitrov
Should v1.1,v1.1sp1,v2.0,v2.0sp1, + v3.0 + v3.0sp1 be there ?
abmv
If you install 3.5 SP1, it will already include 2.0 and 3.0, so you don't need to install them apart.
Darin Dimitrov
But what about v1.1,v1.1sp1 do they need to be installed to install 3.5SP1 ?
abmv
All you need to install is .NET 3.5 SP1, nothing more.
Darin Dimitrov