Any documents about how to make tauri 2.0 support Win 7? #12016
-
Are there any documents that showing how to make tauri 2.0 support windows7? I tried latest version, it shows error: Any suggestions such as rust version, dependencies version, or configurations I needs to adjust to make it work? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
For rust use 1.77.2 - it's the last one with full win 7 support. After that you'll have to use the special windows 7 rust target (
Tauri v1 and v2 and all the plugins should still support win 7 as they are, including "inner" dependencies.
https://v2.tauri.app/distribute/windows-installer/#supporting-windows-7 - On top of that, don't use |
Beta Was this translation helpful? Give feedback.
For rust use 1.77.2 - it's the last one with full win 7 support. After that you'll have to use the special windows 7 rust target (
<arch>-win7-windows-msvc
) but it's not Tier 1 anymore.Edit: This ^ should fix the error in your screenshot.
Tauri v1 and v2 and all the plugins should still support win 7 as they are, including "inner" dependencies.
https://v2.tauri.app/distribute/windows-installer/#supporting-windows-7 - On top of that, don't use
transparent
windows. That's the only thing that comes to mind right now.