zoukankan      html  css  js  c++  java
  • Enable WiX project in Visual Studio 2013

    I have a VS 2012 solution with WiX Installer projects. However, when I open the solution in VS 2013 (Release) the WiX project is incompatible.

    Does anyone know where / whether a VS 2013 version (wixtoolset ?) is available being worked on yet? Or is there a way to make the current project compatible in VS 2013?

    Update 2013-12-02: WiX Toolset 3.8 is released with official support for Visual Studio 2013 editions. It is available for download from wixtoolset.org.

    You can manually enable Visual Studio 2013 compatibility with older versions of WiX:

    1. Copy
      C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEExtensionsMicrosoftWiX to
      C:Program Files (x86)Microsoft Visual Studio 12.0Common7IDEExtensionsMicrosoftWiX

    2. Modify
      C:Program Files (x86)Microsoft Visual Studio 12.0Common7IDEExtensionsMicrosoftWiXextension.vsixmanifest by adding the following:

      <VisualStudio Version="12.0">
          <Edition>Ultimate</Edition>
          <Edition>Premium</Edition> 
          <Edition>Pro</Edition>
          <Edition>Express_All</Edition>
      </VisualStudio>
      
    3. Then open VS2013 Native Tools Command Prompt (from C:Program Files (x86)Microsoft Visual Studio 12.0Common7ToolsShortcuts) and execute:

      devenv /setup

    When you open Visual Studio 2013, WiX 3.7 projects will be compatible.

  • 相关阅读:
    VERSIONINFO Resource
    WCF 学习文摘
    hook 学习
    COM 学习
    ActiveX开发
    Word 开发资料集合
    Loops with PL/SQL
    TWain 在 Qt4 中的调用方法
    从 TWAIN 设备中扫描图像
    Qt enum使用总结
  • 原文地址:https://www.cnblogs.com/zjoch/p/4868113.html
Copyright © 2011-2022 走看看