SignToolSignAliases.

Sign(ICakeContext, FilePath, SignToolSignSettings) Method

Summary

Signs the specified assembly.

Syntax

[CakeMethodAlias]
public static void Sign(this ICakeContext context, FilePath assembly, SignToolSignSettings settings)

Examples

Task("Sign")
    .IsDependentOn("Clean")
    .IsDependentOn("Restore")
    .IsDependentOn("Build")
    .Does(() =>
{
    var file = new FilePath("Core.dll");
    Sign(file, new SignToolSignSettings {
            TimeStampUri = new Uri("http://timestamp.digicert.com"),
            CertPath = "digitalcertificate.pfx",
            Password = "TopSecret"
    });
});

Attributes

Type Description
CakeMethodAliasAttribute An attribute used to mark script method aliases.

Parameters

Name Type Description
context ICakeContext The context.
assembly FilePath The target assembly.
settings SignToolSignSettings The settings.

Return Value

Type Description
void