Skip to content

phillipsj/Cake.AppPackager

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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.