WiX unresolved reference to symbol media 1 in section fragment

匆匆过客 提交于 2019-12-05 01:59:31

The error message is trying say that you are missing a Media element with Id='1'. Usually, you'll find the Media element under the Product element. You just need to add something like:

<Media Id='1' />

You can then add other attributes to the Media element to compress your files into a cabinet. With later versions of the WiX toolset you can use the MediaTemplate element instead of the Media element to create multiple cabinets that do not exceed a certain size. That's great if you end up with lots of files.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!