Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the real benefit of .NET 4 Client Profile?

We have just upgraded our existing .NET application to compile against .NET 4.0. Our app is a WPF client app that gets installed on end user's machines, so it seems like a natural fit to use the Client Profile. However, we would have to do some reorganization of the code to make this work (some of our code is shared between the client app and different server apps, so we have an indirect dependency on System.Web).

My question is, what benefit would we gain from doing this work?

  • Is .NET 4 Client Profile already installed on more machines than .NET 4 full? I understand that Client Profile is rolled out with Windows Update, but I have been unable to find any actual statistics about their respective install bases.

  • Is Client Profile faster/less buggy to install? 41MB vs. 48MB install size isn't much difference for me since our app has about 1GB of multimedia resources.

  • Are there other benefits to Client Profile that I'm not thinking of?

Thanks for any responses!

like image 635
Joe Strommen Avatar asked Dec 28 '10 22:12

Joe Strommen


People also ask

What is .NET client Profile?

NET Framework 4 Client Profile is a subset of the . NET Framework 4 that is optimized for client applications. It provides functionality for most client applications, including Windows Presentation Foundation (WPF), Windows Forms, Windows Communication Foundation (WCF), and ClickOnce features.

What is the function of Microsoft .NET Framework 4?

NET Framework 4 are to improve security, standards compliance, correctness, reliability, and performance. However, . NET Framework 4 does not automatically use its version of the common language runtime (CLR) to run applications that are built by using earlier versions of the . NET Framework.

Is .NET 4 still supported?

As previously announced, starting January 12, 2016 Microsoft will no longer provide security updates, technical support or hotfixes for . NET 4, 4.5, and 4.5.


1 Answers

The primary case for the client profile is that it's a smaller install and thus more broadly palatable in areas with slow or expensive internet connections, especially when installing from the internet.

If you have a controlled customer base or a well-connected customer base, I doubt it would be worth the cost to eliminate your dependency. If, on the other hand, you want an application that will be more broadly available to more users, it may be worth targeting the client profile.

like image 62
Greg D Avatar answered Oct 16 '22 06:10

Greg D