Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How come the .NET framework 3.5 offline installer is 200 MBs larger than the .NET 4 offline installer?

I have code/support an application built on .NET framework that has always run on .NET 2. This year we are upgrading the application to use .NET 3.5 (or 4?).

In preparing for this change we noticed that that Offline Installer (required for our customer base) for .NET 3.5 is 200+ MBs bigger than the .NET 4 offline installer.

Here are my questions.

Why is the dotnet 3.5 installer so much bigger than the 4 offline installer?

Can we TARGET .NET 3.5 but distribute .NET 4. In other words, is .NET 4 backwards compatible? Assuming that .NET 4 was the only installed .NET could application still target earlier frameworks?

IF our application is compiled for x86 CPU (rather than Any CPU) do you still have to distribute the x64/x86 Client Profile or can we just distribute the x86 Client Profile? In other words, can we distribute the x86 Client Profile even though it will be installed on x64 machines if our app is compiled for x86 target CPU? Any risks or gotchas for doing this?

The issue is that if we upgrade our app to target .NET 4 there are a lot of application servers that we also have to upgrade which effects a number of other applications. Any thoughts?

Seth

like image 824
Seth Spearman Avatar asked Feb 03 '23 22:02

Seth Spearman


1 Answers

It is because of the prerequisites. The .NET 4.0 installer requires the target machine to be updated to

  • XP SP3
  • Vista SP1
  • Server 2003 SP2
  • Server 2008 or Win7

The 3.5 SP1 installer is much more lenient, it can even run on the original version of XP. To make that work, it needs to include updates of many of the core Windows components. A significant chunk of that 231 MB installer are not actually .NET components.

Also notable is that in .NET 4.0, the difference between the client profile and the full version has largely disappeared. The full version is only 15% bigger, there isn't much point in targeting the client profile.

like image 138
Hans Passant Avatar answered Feb 05 '23 17:02

Hans Passant