AppPackagerAliases.

AppDecrypter(ICakeContext, FilePath, FilePath, FilePath, AppPackagerSettings) Method

Summary

Creates an decrypted app package from the specified input app package at the specified output package.
Assembly
Cake.AppPackager.dll
Namespace
Cake.AppPackager
Containing Type
AppPackagerAliases

Syntax

public static void AppDecrypter(this ICakeContext context, FilePath inputPackage, FilePath outputPackage, FilePath keyFile, AppPackagerSettings settings)

Examples

AppDecrypter("test.appx", "decrypted.appx", "keyfile_name.txt", new AppPackagerSettings { OverwriteOutput = true }); 

Attributes

Type Description
CakeMethodAliasAttribute
CakeAliasCategoryAttribute
CakeNamespaceImportAttribute

Parameters

Name Type Description
context ICakeContext The context.
inputPackage FilePath Input package.
outputPackage FilePath Output package.
keyFile FilePath Key file.
settings AppPackagerSettings The settings.

Return Value

Type Description
void