简体   繁体   中英

what's the difference in vs2010 of the target framework: .net framework 4.0 and .net framework 4.0 client profile?

when right click the property of the project in vs2010, what's the difference of the target framework with or without client profile? thanks.

The client profile is a subset of the complete .NET 4 framework, aimed at client side applications. It allows users to have a smaller download and install, leaving out the bits they wouldn't normally use.

However depending upon your application, and which bits of the framework you want to use, you may need the complete version and not the client. For example if you want to access the Membership provider stuff from a WinForms app you'll need the full and not client.

See this for more info:

Differences between Microsoft .NET 4.0 full Framework and Client Profile

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM