.NET Framework 4 Client Profile vs .NET Framework 3.5 Client Profile
Posted
by Janusz
on Stack Overflow
See other posts from Stack Overflow
or by Janusz
Published on 2010-04-13T13:25:28Z
Indexed on
2010/04/28
10:13 UTC
Read the original article
Hit count: 683
.NET
Currently I am targeting .NET Framework 3.5 Client profile.
Under certain conditions (when .NET 1.x or 2.x is installed) the client profile is not installed and instead full version of .NET Framework 3.5. is installed.
This limitation has been removed from .NET 4.0 profile - therefore its a nice improvement that significantly reduces download size on certain PCs.
However, if I target application to .NET 4.0 then all the clients will have to download new framework.
I think ideal scenario would be to target .NET 3.5 profile but point installer to .NET 4.0 client profile. This way PCs with 3.5 installed (65% from our tests at the moment) would be fine and the rest would install .NET 4.0.
Is my thinking correct or its not feasible? Will .NET 3.5 profile application run with only .NET 4.0 profile installed?
Thank you
© Stack Overflow or respective owner