I've tried <UIRef Id="WixUI_Minimal" />
, but I get "Unresolved reference to symbol WixUI:WixUIMinimal". What am I doing wrong?
相关问题
- How does the setup bootstrapper detect if prerequi
- Wix: How can I set, at runtime, the text to be dis
- JFX scale image up and down to parent
- Wix variable name formats with spaces and other ch
- Swing Font Rendering
相关文章
- Algorithm for maximizing coverage of rectangular a
- Is there a way to hide the new HTML5 spinbox contr
- Can keyboard of type UIKeyboardTypeNamePhonePad be
- PropertyGrid - Possible to have a file/directory s
- Programming a touch screen application with SWING
- Can WM_NEXTDLGCTL be used with non-dialog windows?
- How can I create a small IDLE-like Python Shell in
- How do I require a value in a textbox in a Wix cus
You need to add reference of WixUIExtension in your WIX project to resolve this issue.
Below is a link to a good example on how to custimize the WixUIExtensions.
Customised UIs for Wix
If you use the
.wixproj
directly via MSBuild, without Visual Studio, the required modification is to add this:See Re: (WiX-users) How to get off the ground with WixUI_Minimal?
The wixui extension is no longer wixui.wixlib. It was rolled into the WixUIExtension.
If you are on the command line, add
-ext WixUIExtension
to the call to light.exe.If you have a WiX project in Visual Studio, add a reference to "WixUIExtension" by right clicking on "References" in the Solution Explorer.
See the WiXUI Dialog Sets page for WIX3.