• VS2008开发WinCE程序编译速度慢的解决办法


    VS2008环境下采用C#、.NET Compact Framework开发WinCE、Windows Mobile程序时,编译项目非常慢,有时候需要几分钟甚至十几分钟,如果出现这种情况,除了排除机器配置问题外,你可以修改VS的配置文件,以屏蔽掉编译中不需要的任务,这个修改可以让你的编译速度大大提高,有可能你的编译时间只需要几秒钟就搞定了啊。

    1、找到以下文件

    C:WindowsMicrosoft.NETFrameworkv3.5Microsoft.CompactFramework.Common.targets

    2、用记事本打开该文件,找到以下节点,按照加粗亮底的部分,修改后保存。

    < Target  Name ="PlatformVerificationTask"  Condition ="'$(SkipPlatformVerification)' == 'true'"   >
      < PlatformVerificationTask
        PlatformFamilyName ="$(PlatformFamilyName)"
        PlatformID ="$(PlatformID)"
        SourceAssembly ="@(IntermediateAssembly)"
        ReferencePath ="@(ReferencePath)"
        TreatWarningsAsErrors ="$(TreatWarningsAsErrors)"
        PlatformVersion ="$(TargetFrameworkVersion)" />
    </ Target >

    3、重启VS,再次编译,速度是不是提高了很多呢?

    msdn资料:http://blogs.msdn.com/b/vsdteam/archive/2006/09/15/756400.aspx  

    https://blog.csdn.net/wl076/article/details/43303629

  • 相关阅读:
    2020/4/15
    2020/4/14
    2020/4/13
    2020/4/12
    2020/4/11
    2020/4/9
    PTA录入数据库题目流程
    PTA录题
    2020/4/8
    如何把mysql workbench的数据结构和数据导出到sql表中
  • 原文地址:https://www.cnblogs.com/hanzonghao/p/14301142.html
Copyright © 2020-2023  润新知