Replies: 2 comments
-
Have you gotten a solution to this? |
Beta Was this translation helpful? Give feedback.
0 replies
-
the If somehow that doesn't work as intended, you can always, on launch, run the .exe manually using fn main() {
#[cfg(target_os = "windows")]
{
let _ = Command::new("<path\to\your\executable.exe")
.spawn()
.expect("Failed to start executable");
}
tauri::Builder::default()
.run(tauri::generate_context!())
.expect("error while running tauri application");
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
If my service depends on a third-party service (for example, an exe file needs to be installed), how to include the third-party service when packaging. And automatically install this 3rd party service during installation? I tried bundler.externalBin , but how do I get it to install automatically during installation?
Beta Was this translation helpful? Give feedback.
All reactions