欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vs编译错误的bug修改

程序员文章站 2023-11-02 15:57:46
c:\program files (x86)\msbuild\microsoft\wix\v3.x\wix2010.targets(508,7): error : the outp...

c:\program files (x86)\msbuild\microsoft\wix\v3.x\wix2010.targets(508,7): error : the outputpath property is not set for this project. please check to make sure that you have specified a valid configuration/platform combination. configuration='debug' platform='x64'

这是wix的bug。修改如下:

if you open your .wixproj file in a text editor, you will see that the new added configuration items are at the bottom of the file (below the import of the standard wix build targets) and your x86 configuration is at the top (above the import). if you shift the xml for the new added config so that it's adjacent to the x86 config, then you will find that your project builds properly.