zoukankan      html  css  js  c++  java
  • [WinCE | VS2008 | Solution] VS2008 building WinCE projects taking a long time

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

    2. Find paragraph:

    <Target
    Name="PlatformVerificationTask">
    <PlatformVerificationTask
    PlatformFamilyName="$(PlatformFamilyName)"
    ...
    </Target>

    3. Change one line as below, thus disabling platform verification:

    <Target
    Name="PlatformVerificationTask" Condition="0==1">
    <PlatformVerificationTask
    PlatformFamilyName="$(PlatformFamilyName)"
    ...
    </Target>

    4. Restart VS2008. Problem solved

  • 相关阅读:
    hbase与Hive的集成
    HBase API操作
    HBase原理
    HBase数据结构
    HBase Shell操作
    HBase简介
    Boxes in a Line
    B
    B. Painting Pebbles
    X
  • 原文地址:https://www.cnblogs.com/lionetchen/p/3824153.html
Copyright © 2011-2022 走看看