zoukankan      html  css  js  c++  java
  • .NET Framework Client Profile/.net framework 客户端配置

    .NET Framework Client Profile

    .NET Framework Client Profile 是完整版 .NET Framework 3.5 SP1 的子集,面向客户端应用程序。

    它提供 Windows Presentation Foundation (WPF)、Windows 窗体、Windows Communication Foundation (WCF) 和 ClickOnce 功能的简化子集。这可以为面向 .NET Framework Client Profile 的 WPF、Windows 窗体、WCF 和控制台应用程序实现快速部署方案。

    注意事项


     

    如需以最快的速度部署 WPF 或 Windows 窗体客户端应用程序,请选择 .NET Framework Client Profile。.NET Framework Client Profile 应用程序有一个再分发软件包,该软件包可在目标计算机上安装最小的一组客户端程序集,而无须安装完整的 .NET Framework。

    come from: http://msdn.microsoft.com/zh-cn/library/cc656912.aspx

    就.net 4.0来说,如果项目引用的assemblies都包含在 Assemblies in the .NET Framework Client Profile. 就可以设置target .net framework 为.net client profile.

    .net client profile assembles 可在如下目录找到.

    %systemdrive%\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\Profile\Client

    %systemdrive%\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v3.5\Profile\Client

    所包含的Assemblies清单可在如下:

    %systemdrive%\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\Profile\Client\RedistList\FrameworkList.xml (54 assemblies, 20M左右)

    %systemdrive%\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v3.5\Profile\Client\RedistList\FrameworkList.xml(80 assemblies, 25M左右)

    事实上在这两个目录下都多了一个System.EnterpriseServices.Wrapper.dll, 但不知为什么.

    NET Framework 3.5 SP1 Client Profile Preview contains the following features:

  • Smaller framework deployment - ~28 MB client deployment package
  • Smaller, faster client deployment boot strapper
  • Client Application focused feature set:
    • Common Language Runtime (CLR)
    • ClickOnce
    • Windows Forms
    • Windows Presentation Foundation
    • Windows Communication Foundation
  • Visual Studio 2008 SP1 Integration – Applications can be targeted specifically for the Client Framework subset.

    come from:http://windowsclient.net/wpf/wpf35/wpf-intro-client-profile.aspx

    .NET Framework 4 Client Profile Features


     

    The .NET Framework 4 Client Profile contains the features needed to develop a client application, including:

    • common language runtime (CLR)

    • ClickOnce

    • Windows Forms

    • Windows Presentation Foundation (WPF)

    • Windows Communication Foundation (WCF)

    • Entity Framework

    • Windows Workflow Foundation

    • Speech

    • XSLT support

    • LINQ to SQL

    • Runtime design libraries for Entity Framework and WCF Data Services 

    • Managed Extensibility Framework (MEF)

    • Dynamic types

    • Parallel-programming features, such as Task Parallel Library (TPL), Parallel LINQ (PLINQ), and Coordination Data Structures (CDS)

    • Debugging client applications

    For a complete list of reference assemblies included in the .NET Framework 4 Client Profile, see Assemblies in the .NET Framework Client Profile. For more information about these technologies, see Quick Technology Finder (.NET Framework).

    come from:http://msdn.microsoft.com/en-us/library/cc656912.aspx

查看全文
  • 相关阅读:
    git忽略.idea文件
    python pip获取所有已安装的第三包
    bootstrap最简单的导航条
    sencha architect开发sencha touch应用注意事项
    反编译sencha toucha打包的apk文件,修改应用名称支持中文以及去除应用标题栏
    TortoiseSVN文件夹及文件图标不显示解决方法
    sql server 约束 查找
    SQLSERVER金额转换成英文大写的函数
    JS把数字金额转换成中文大写数字的函数
    C#中将数字金额转成英文大写金额的函数
  • 原文地址:https://www.cnblogs.com/zzj8704/p/1739130.html
  • Copyright © 2011-2022 走看看