问题描述
我在Visual Studio 2012中正在使用的解决方案中有一个项目,并且收到其中一个项目的消息:此版本的Visual Studio没有安装以下项目类型,或不支持它们."这是一个vdproj.这是什么意思,我该如何解决这个问题
I have a project in a solution I am working on in Visual Studio 2012, and I get this message for one of the projects: "This version of Visual Studio does not have the following project types installed, or does not support them." It is a vdproj. What does this mean and how do I resolve this problem
推荐答案
vdproj 是 MSI 用于Visual Studio的创建项目.它已被弃用,大多数人都转向 WIX 或 NSIS 或专业级的安装程序创建工具,例如Install Shield.
vdproj is a MSI creation project for Visual Studio. Its been deprecated and most people have moved on to either WIX or NSIS or a professional grade installer creation tools such as Install Shield.
如果您不需要产品的安装程序,只需从解决方案中排除vdproj项目,然后继续您的生活
If you do not require an installer for your product just exclude the vdproj project from the solution and continue with your life
如果您想立即过渡到wix,请尝试使用此powershell脚本,这很有趣, https://github .com/chrisoldwood/vdproj2wix
for fun if you want to try to transition right away to wix, try this powershell script https://github.com/chrisoldwood/vdproj2wix
这篇关于Visual Studio-vdproj不兼容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!