-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Description
file details are showing as file version "0.1.0.0" instead of "2024.5.3.1055"
Cargo.toml:
[package]
name = "test"
version = "0.1.0"
edition = "2021"
build = "src/build.rs"
[dependencies]
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[package.metadata.winres]
FileVersion = "2024.5.3.1055"
[lib]
crate-type = ["cdylib"]
path = "src/lib.rs"
build.rs:
#[cfg(windows)]
fn main() {
use winres::WindowsResource;
let mut res = WindowsResource::new();
res.compile().unwrap();
}
#[cfg(not(windows))]
fn main() {}
silvhook
Metadata
Metadata
Assignees
Labels
No labels