Richard Ev
Richard Ev

Reputation: 54117

Target framework, what does ".NET Framework ... Client Profile" mean?

In Visual Studio 2008, the target framework settings for a project are

However, in Visual Studio 2010 they are

What do the Client Profile settings mean?

Edit

A little more experimentation shows that with MVC, WebForms and WCF projects you don't get the Client Profile options. When creating WinForms and Console applications, the default target framework is .NET 4 Client Profile. Which makes sense.

Upvotes: 37

Views: 14083

Answers (3)

TomTom
TomTom

Reputation: 62093

It is a subset of the .NET framework for CLIENT applications (i.e. applications installed on the client computer).

As such, they do not incorporate server technologies. THis allows the client download to only install a smaller part.

Server technologies are for example ASP.NET.

Using ".net client profile" as search on Google, first link leads to http://msdn.microsoft.com/en-us/library/cc656912.aspx which has a detailed explanation.

Also the local .NET documentation (F1 - I hope you are aware this exists) has the same content.

Upvotes: 4

mafu
mafu

Reputation: 32650

The client profile is a smaller version of the full .NET framework that contains only the more commonly used content. Scott wrote a nice post about this. Here and here is an official introduction.

The client profile was added recently, so VS 2008 does not know about it yet. The client profile is one of the major features that come with .NET 4 and VS 2010. Since the Client Profile is a subset of the full .NET 4 framework, you don't need to install it if you already got the full .NET 4.

It can be an advantage to develop against the Client Profile since it exists on more machines than the full framework (and it is smaller in download size for your customers).

The disadvantage that comes along naturally - it does not include everything. If you are developing a server application or a program that uses uncommon parts of the framework, you'll need the full framework in any case. Typical client programs, however, are likely satisfied with the Client Profile.

Upvotes: 44

GaiusSensei
GaiusSensei

Reputation: 1890

The Client Profiles are smaller, more compact versions of the .Net Framework. More info here.

Upvotes: 4

Related Questions