vote up 2 vote down star
1

Can I safely download and install .Net framework 3.5 SP1 without requiring my customers to upgrade their .Net Framework distributable?

EDIT: And without changing my build script

EDIT: I'm currently running 3.5

flag

You need to flesh out your question a bit, Brian. I assume you're releasing builds from your machine. What framework? Winforms click once apps? Web apps? Give us mor einfo. – Danimal Oct 17 '08 at 18:08

4 Answers

vote up 4 vote down check

From hanselman,

On the .NET 3.5 side of things, since this is an SP (Service Pack), yes, some stuff goes in your GAC and gets changed. However, the changes are completely additive. That means if an API's method signature has changed, that's a bug that we need to fix. It will be a fully compatible service pack release. It shouldn't break any of your existing code.

link|flag
vote up 4 vote down

Yes, as long as your project is targeting the earlier framework version.

link|flag
safe general-purpose answer -- wish I had thought of it! – Danimal Oct 17 '08 at 18:10
vote up 0 vote down

Yes, but

  • make sure you test against 3.5 without SP1 (a virtual machine is invaluable for stuff like this)
  • Don't use any of the new features introduced with 3.5 SP1 (like ASP.NET Dynamic Data)

It might be possible to deploy all the dependencies (even those normally in the GAC) with your project - I've seen .Net 2.0 SP1 projects using System.Core using this technique - but again make sure you test this thorough in a .Net 3.5 without SP1 environment.

link|flag
vote up 0 vote down

No, not safely. You cannot configure Visual Studio (2008) to target 3.5SP1, only 3.5. Although the API is almost identical between 3.5 and 3.5SP1 there are a few new functions and constructors in SP1. MSDN doesn't give any help saying when the function was introduced, so there is no way to tell in VS if your new build will work without SP1.

If you run that code in 3.5 without SP1 your application will crash when it runs the actual code, not when the assembly loads.

The solution is to either stick with 3.5 without SP1, or to properly test all your code on a machine without SP1.

Personally, I have a VM machine to test.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.