vote up 2 vote down star

I am building a .NET application and considering deploying it through XBAP. This requires that the users have .NET 3.0 - 3.5 installed on their machine. Are there any kind of estimates of how many people have this? As a developer it's really hard to estimate. Any thoughts?

flag

35% accept rate
1  
You know that you can make it a prereq to your app and require users download/install it, right? – Eric Aug 16 at 21:03
2  
As far as I know XBAP is almost dead. Try silverlight instead. – PK Aug 16 at 21:05
Yes I know. What do you mean by almost dead? How is it compared to activex? – unknown (google) Aug 16 at 21:22
Deader. VB6 people still do ActiveX things. – John Saunders Aug 16 at 21:32
can these Activex run on firefox too? – unknown (google) Aug 16 at 21:41
show 1 more comment

2 Answers

vote up 6 vote down

Some thoughts;

  • anybody with Vista will have .NET 3.0 (so WPF) pre-installed
  • anybody with Windows 7 will have .NET 3.5 SP1 pre-installed

Maybe look at these numbers instead

Alternatively, perhaps consider deploying as Silverlight 3? Similar to WPF (although cut-down), but cross-platform and cross-browser. And a very small download.

If you need more than Silverlight, then you might point users (without the required .NET version) at the "client profile"; a smaller download than "full" .NET.

link|flag
Well I need greater privileges then what silverlight can provide. And yet, in numbers... what is the percent of windows xp's users that have .net 3-3.5 installed? – unknown (google) Aug 16 at 21:13
No idea ;-p I'm mainly "corporate", so if I have a pre-requisite I get the network guys to push it out via WSUS ;-p – Marc Gravell Aug 16 at 21:34
Do you have a problem with installing .NET 3.5 SP1 along with your application? – John Saunders Aug 16 at 21:35
Well depends on how small the installation is. If the client doesn't have any previous version of .net it might take too much time. – unknown (google) Aug 16 at 21:38
You'd need to assume they have some version of .NET installed, or else ship some version with your app. Give that, why not ship the latest? – John Saunders Aug 17 at 9:22
vote up 6 vote down

If you only need .Net 3.0, this comes along with Vista RTM/Server 08, so you can look at those penetration numbers for a guaranteed base. Likewise, Windows 7 will have .Net 3.5 baked in.

But making it a prerequesite to install isn't really a big deal, when the installer is only a few megabytes. See: Scott Hanselman's SmallestDotNet project.

See also: What is the market share for the various .Net framework versions?.

link|flag

Your Answer

Get an OpenID
or

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