Summary
Update the pdb file 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, FilePath pdbFilePath, GitLink3Settings settings)
Examples
GitLink3("C:/temp/solution/bin/my.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. |
pdbFilePath | FilePath | The PDB File to analyze. |
settings | GitLink3Settings | The settings. |
Return Value
Type | Description |
---|---|
void |