Skip to content

Latest commit

 

History

History
39 lines (22 loc) · 1.19 KB

README.md

File metadata and controls

39 lines (22 loc) · 1.19 KB

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.