changepacks 0.2.21

A unified version management and changelog tool for multi-language projects
1
2
3
4
5
6
7
8
9
10
#[cfg(windows)]
use embed_manifest::{embed_manifest, new_manifest};

#[cfg(windows)]
fn main() {
    embed_manifest(new_manifest("Changepacks.Changepacks")).expect("unable to embed manifest file");
}

#[cfg(not(windows))]
fn main() {}