可以在英文社区搜索一下,下面的回答可能满足你的需求:https://stackoverflow.com/questions/67450151/how-to-install-files-with-wix-to-d-drive-and-check-d-is-not-cd-rom你需要修改 wix 配置文件,所以你需要简单学习wxs文件语法,修改 tauri 默认的 wxs 文件:https://github.com/tauri-apps/tauri/blob/dev/tooling/bundler/src/bundle/windows/templates/main.wxs使用自定义的wxs文件后(假设为./wix/app.wxs)需要在tauri.config.json文件中指定: "windows": { "wix": { "template": "./wix/app.wxs" } }
可以在英文社区搜索一下,下面的回答可能满足你的需求:
https://stackoverflow.com/questions/67450151/how-to-install-files-with-wix-to-d-drive-and-check-d-is-not-cd-rom
你需要修改 wix 配置文件,所以你需要简单学习
wxs
文件语法,修改 tauri 默认的 wxs 文件:https://github.com/tauri-apps/tauri/blob/dev/tooling/bundler/src/bundle/windows/templates/main.wxs
使用自定义的
wxs
文件后(假设为./wix/app.wxs
)需要在tauri.config.json
文件中指定: