Skip to content

Cake Addin for creating UWP packages.

License

Notifications You must be signed in to change notification settings

phillipsj/Cake.AppPackager

Repository files navigation

Cake.AppPackager

A Cake Addin for App packager.

Build status

beta-cake-addins MyGet Build Status

cakebuild.net

Join the chat at https://gitter.im/cake-build/cake

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.