This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.AppPackager.
Summary
Creates an decrypted app package from the specified input app package at the specified output package.
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