A Cake Addin for App packager.
Supports all the current command line options provided by App Packager
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.