Cake.AppPackager
A Cake Addin for App packager.
Functionality
Supports all the current command line options provided by App Packager
Usage
To use the addin just add it to Cake call the aliases and configure any settings you want.
#addin"nuget:?package=Cake.AppPackager"
Task("BuildAppPackage")
.Does(() => {
AppPack("test.appx", "package-content", new AppPackagerSettings { OverwriteOutput = true });
});
...
Thats it.
Hope you enjoy using.