This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Issues.
Summary
Sets the path to the file affected by the issue and the line and column in the file where the issues have occurred.
- Assembly
- Cake
.Issues .dll - Namespace
- Cake
.Issues - Containing Type
- IssueBuilder
Syntax
public IssueBuilder InFile(string filePath, Nullable<int> line, Nullable<int> column)
Parameters
Name | Type | Description |
---|---|---|
filePath | string | The path to the file affected by the issue.
The path needs to be relative to the repository root.
null or System.String.Empty if issue is not related to a change in a file. |
line | Nullable |
The line in the file where the issues have occurred.
null if the issue affects the whole file or an assembly. |
column | Nullable |
The column in the file where the issues have occurred.
null if the issue affects the whole file or an assembly. |
Return Value
Type | Description |
---|---|
IssueBuilder | Issue Builder instance. |