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 |
---|---|
Cake |
An attribute used to mark script method aliases. |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
pdbFiles | IEnumerable |
The PDB File collection to analyze. |
settings | GitLink3Settings | The settings. |
Return Value
Type | Description |
---|---|
void |