FunLovinCoder
FunLovinCoder

Reputation: 7877

What platforms will my app that targets the .Net 3.5 framework run on?

I'm writing a C# app (in VS 2008). If I target the .Net 3.5 framework, will it run on Windows XP and above? Will XP users potentially have to download a .Net upgrade?

UPDATE

If the app is intended for business / corporate environments do you think it's pretty safe to target 3.5 rather than 2.0?

Upvotes: 2

Views: 145

Answers (2)

Kirk Broadhurst
Kirk Broadhurst

Reputation: 28708

If the app is intended for business / corporate environments do you think it's pretty safe to target 3.5 rather than 2.0?

Not if the client machines are not able to upgrade or install the 3.5 Framework.

It's not safe to assume they already have the framework. It is realistic, however, to have them install the framework. They probably have it, and if they don't then they should get it if you're writing an app in 3.5.

Upvotes: 2

BoltClock
BoltClock

Reputation: 723578

Only Windows 7 and newer will come with .NET 3.5 (SP1) pre-installed; Windows XP and Vista users, while able to run apps built on .NET 3.5, have to download and install it first in order to use your app.

I think the latest service packs of XP and Vista include .NET 3.5, though.

Upvotes: 2

Related Questions