Which runtimes are required
-
We have some .Net 2.0 apps, a 3.5 app, and plan to do 4.0 in the future. Do I need to install all 3 runtimes, or is there a super-version? 4.0 looks really small compared to 3.5, and I think it may only contain stuff specific to 4.
I need an app that will automatically deliver a new BBBBBBBBaBB (beautiful blonde bimbo brandishing bountiful bobbing bare breasts and bodacious butt) every day. John Simmons / outlaw programmer
-
We have some .Net 2.0 apps, a 3.5 app, and plan to do 4.0 in the future. Do I need to install all 3 runtimes, or is there a super-version? 4.0 looks really small compared to 3.5, and I think it may only contain stuff specific to 4.
I need an app that will automatically deliver a new BBBBBBBBaBB (beautiful blonde bimbo brandishing bountiful bobbing bare breasts and bodacious butt) every day. John Simmons / outlaw programmer
2.0, 3.0 and 3.5 use the same 2.0 CLR. 3.0 and 3.5 are just a bunch of extensions on top of 2.0. 4.0 is a completely new CLR. There are 2 versions of the .NET Framework now. There is the full, heavyweight version that everyone is used to seeing and now there is a Client Profile version which is much lighter in weight and only includes the components that are used the most across the majority of applications. You can read more about it, and what's included and what's not, here[^].
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008
But no longer in 2009... -
We have some .Net 2.0 apps, a 3.5 app, and plan to do 4.0 in the future. Do I need to install all 3 runtimes, or is there a super-version? 4.0 looks really small compared to 3.5, and I think it may only contain stuff specific to 4.
I need an app that will automatically deliver a new BBBBBBBBaBB (beautiful blonde bimbo brandishing bountiful bobbing bare breasts and bodacious butt) every day. John Simmons / outlaw programmer
You need all the three runtimes installed (unless you specify the runtime using the
runtime
tag in your application configuration file). .Net 4 is actually a big change over the others as a new version of the CLR has been released along with it.modified on Tuesday, May 4, 2010 1:43 AM