MageAliases.

MageNewDeployment(ICakeContext, NewDeploymentSettings) Method

Summary

Creates a new deployment manifest.
Assembly
Cake.Mage.dll
Namespace
Cake.Mage
Containing Type
MageAliases

Syntax

public static void MageNewDeployment(this ICakeContext context, NewDeploymentSettings settings)

Examples

MageNewApplication(new NewApplicationSettings{
    ToFile = "WindowsFormsApplication1.exe.manifest",
    Name = "Windows Form Application",
    Version = "1.0.0.0",
    FromDirectory = "./WindowsFormsApplication1/bin/Release"
});

Attributes

Type Description
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.
settings NewDeploymentSettings The settings.

Return Value

Type Description
void