https://github.com/aloisdeniel/node-manifest-uwp
Update your Windows Universal application manifest (version, bundle idenfifier, ...).
https://github.com/aloisdeniel/node-manifest-uwp
manifest package tool update uwp versionning windows
Last synced: 2 months ago
JSON representation
Update your Windows Universal application manifest (version, bundle idenfifier, ...).
- Host: GitHub
- URL: https://github.com/aloisdeniel/node-manifest-uwp
- Owner: aloisdeniel
- License: mit
- Created: 2017-04-27T05:29:23.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-27T17:31:25.000Z (about 9 years ago)
- Last Synced: 2025-03-06T04:16:33.702Z (over 1 year ago)
- Topics: manifest, package, tool, update, uwp, versionning, windows
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# manifest-uwp
Update your Windows Universal application manifest (version, bundle idenfifier, ...).
## Install
```sh
$ npm install --save manifest-uwp
```
## Quickstart
```js
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
* [iOS](https://github.com/aloisdeniel/node-manifest-ios)
* [Android](https://github.com/aloisdeniel/node-manifest-android)
## Copyright and license
MIT © [Aloïs Deniel](http://aloisdeniel.github.io)