Skip to content

Update your Windows Universal application manifest (version, bundle idenfifier, ...).

License

Notifications You must be signed in to change notification settings

aloisdeniel/node-manifest-uwp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

manifest-uwp

Update your Windows Universal application manifest (version, bundle idenfifier, ...).

Install

$ npm install --save manifest-uwp

Quickstart

var path = require('path');
var UWPManifest = require('manifest-uwp');

var uwp = new UWPManifest();
uwp.load({ file: path.join(__dirname, "Package.appxmanifest") }, function(err){
    uwp.version = "2.5.6.7";
    uwp.bundleIdentifier = "com.test.sample";
    uwp.displayName = "Sample";
    uwp.save({ file: path.join(__dirname, "Package.Updated.appxmanifest") }, function(err) {
        console.log("DONE");
    })
})

Other manifests

Copyright and license

MIT © Aloïs Deniel

About

Update your Windows Universal application manifest (version, bundle idenfifier, ...).

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published