我通过WIX工具包在Visual Studio 2015中有一个WIX项目。我得到的一个小问题是.MSI文件正在生成一个名为“unused”的文件夹,但我不知道为什么。从哪里开始这条路?
我可以看到light.exe命令,该命令具有在“out”参数中指定的正确路径,但向它添加名为“unused”的文件夹除外。例如,
Light.exe -out“C:\ code \ someapp \ bin \ release \ unused \ someapp.msi”
项目文件中的我的构建配置xml是
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<OutputPath>bin\$(Configuration)</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
<SuppressSpecificWarnings>1076</SuppressSpecificWarnings>
</PropertyGroup>
如果我将“OutputPath”更改为“bin \ $(Configuration)\ test”,它会在名为test的文件夹中构建所有内容,但也会将MSI文件转储到名为“unused”的文件夹中。
有什么想法吗?
尼克。
答案 0 :(得分:1)
您的.wxl文件包含Culture="unused"
。