views:

4172

answers:

2

What does "Client-only Framework subset" in Visual Studio 2008 do?

+3  A: 

check out this link where it explains this in graphic detail, literally

YonahW
+7  A: 

You mean Client Profile?

The .NET Framework Client Profile setup contains just those assemblies and files in the .NET Framework that are typically used for client application scenarios. For example: it includes Windows Forms, WPF, and WCF. It does not include ASP.NET and those libraries and components used primarily for server scenarios. We expect this setup package to be about 26MB in size, and it can be downloaded and installed much quicker than the full .NET Framework setup package.

Gulzar