mirror of
https://github.com/EasyTier/EasyTier.git
synced 2024-11-16 19:58:27 +08:00
65ac991d1c
add requireAdmin in app manist
35 lines
1.0 KiB
Rust
35 lines
1.0 KiB
Rust
fn main() {
|
|
if !cfg!(debug_assertions) && cfg!(target_os = "windows") {
|
|
let mut windows = tauri_build::WindowsAttributes::new();
|
|
windows = windows.app_manifest(
|
|
r#"
|
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
|
<dependency>
|
|
<dependentAssembly>
|
|
<assemblyIdentity
|
|
type="win32"
|
|
name="Microsoft.Windows.Common-Controls"
|
|
version="6.0.0.0"
|
|
processorArchitecture="*"
|
|
publicKeyToken="6595b64144ccf1df"
|
|
language="*"
|
|
/>
|
|
</dependentAssembly>
|
|
</dependency>
|
|
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
|
<security>
|
|
<requestedPrivileges>
|
|
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
|
|
</requestedPrivileges>
|
|
</security>
|
|
</trustInfo>
|
|
</assembly>
|
|
"#,
|
|
);
|
|
tauri_build::try_build(tauri_build::Attributes::new().windows_attributes(windows))
|
|
.expect("failed to run build script");
|
|
} else {
|
|
tauri_build::build();
|
|
}
|
|
}
|