We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
encoding='windows-1252'
I noticed that this encoding was used instead of UTF-8. The consequence of not using UTF-8 is that wix convert (wix3 -> wix4) will fail silently.
wix convert
Workaround is to just change it to encoding='utf-8'. Interestingly enough wix convert ends up removing the xml tag all together.
encoding='utf-8'
The text was updated successfully, but these errors were encountered:
Does changing to utf-8 fail with wix3?
utf-8
Sorry, something went wrong.
@volks73 wix3/cargo-wix appears to work with utf-8
juliusl
No branches or pull requests
I noticed that this encoding was used instead of UTF-8. The consequence of not using UTF-8 is that
wix convert
(wix3 -> wix4) will fail silently.Workaround is to just change it to
encoding='utf-8'
. Interestingly enough wix convert ends up removing the xml tag all together.The text was updated successfully, but these errors were encountered: