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.

  • 相关阅读:
    vscode安装设置go
    Go开发环境搭建
    使用Docker镜像
    Docker for mac安装
    封装request.get_params批量取值
    Python之日志处理(logging模块)
    Python3 urllib.parse 常用函数示例
    前端之CSS属性相关
    前端之CSS选择器
    前端之CSS介绍
  • 原文地址:https://www.cnblogs.com/zjoch/p/4868113.html
Copyright © 2011-2022 走看看