We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6788bb4 commit 6a6b138Copy full SHA for 6a6b138
.changes/fix-wix-escape-resources.md
@@ -0,0 +1,5 @@
1
+---
2
+'tauri-bundler': 'patch'
3
4
+
5
+Correctly escape XML for resource files in WiX bundler.
tooling/bundler/src/bundle/windows/msi/wix.rs
@@ -614,6 +614,7 @@ pub fn build_wix_app_installer(
614
615
let mut fragment_paths = Vec::new();
616
let mut handlebars = Handlebars::new();
617
+ handlebars.register_escape_fn(|s| s.into());
618
let mut has_custom_template = false;
619
let mut enable_elevated_update_task = false;
620
0 commit comments