Skip to content

Perlmint/sxs-manifest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SxS-manifest

Microsoft SxS assembly manifest generator

Usage

// in build.rs

fn main() {
    let mut res = winres::WindowsResource::new();
    res.set_manifest(&{
        let mut manifest = sxs_manifest::AssemblyManifest::default();

        manifest.compatibility.max_version_tested =
            Some(sxs_manifest::manifest::windows_version::WINDOWS_10_1903);
        manifest
            .compatibility
            .supported_os
            .insert(sxs_manifest::manifest::SupportedOS::Windows10);

        manifest.serialize_to_string().unwrap()
    });
    res.compile().unwrap();
}

About

Microsoft SxS manifest generator

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages