GitLink3Aliases.

GitLink3(ICakeContext, IEnumerable<FilePath>, GitLink3Settings) Method

Summary

Update the pdb files to link all sources. This will allow anyone to step through the source code while debugging without a symbol source server.
Namespace
Cake.Common.Tools.GitLink
Containing Type
GitLink3Aliases

Syntax

[CakeMethodAlias]
public static void GitLink3(this ICakeContext context, IEnumerable<FilePath> pdbFiles, GitLink3Settings settings)

Examples

GitLink3("C:/temp/solution/bin/**/*.pdb", new GitLink3Settings {
    RepositoryUrl = "http://mydomain.com",
    ShaHash       = "abcdef"
});

Attributes

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

Parameters

Name Type Description
context ICakeContext The context.
pdbFiles IEnumerable<FilePath> The PDB File collection to analyze.
settings GitLink3Settings The settings.

Return Value

Type Description
void