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
This issue arose for me when trying to add a FipsCompliant property to the Tauri WiX configuration (using the answer to this question: https://stackoverflow.com/questions/56467603/how-to-enforce-candle-exe-fips-with-fips-or-fipscomplianttrue-fipscompliant)
FipsCompliant
In the Tauri Discord, it was mentioned that Tauri does not currently support using a .wixproj.
I would like to be able to use a .wixproj file to add the properties I need on Windows.
Because this issue is Windows-exclusive, I'm currently working around it by using the run-script-os package with the package.json scripts:
package.json
... "tauri-build": "run-script-os", "tauri-build:win32": "tauri build -b none", "tauri-build:default": "tauri build", ...
This will bypass the bundler on Windows entirely.
No response
The text was updated successfully, but these errors were encountered:
We can't really use a wixproj :( It would mean a massive refactor at least - and we'll focus on NSIS now. I can add a config option for this though.
Sorry, something went wrong.
feat(core): add fips_compliant wix config option, closes #4541
fips_compliant
47c9808
d88b9de
No branches or pull requests
Describe the problem
This issue arose for me when trying to add a
FipsCompliant
property to the Tauri WiX configuration (using the answer to this question: https://stackoverflow.com/questions/56467603/how-to-enforce-candle-exe-fips-with-fips-or-fipscomplianttrue-fipscompliant)In the Tauri Discord, it was mentioned that Tauri does not currently support using a .wixproj.
Describe the solution you'd like
I would like to be able to use a .wixproj file to add the properties I need on Windows.
Alternatives considered
Because this issue is Windows-exclusive, I'm currently working around it by using the run-script-os package with the
package.json
scripts:This will bypass the bundler on Windows entirely.
Additional context
No response
The text was updated successfully, but these errors were encountered: