IIssuesParametersInputFiles Interface

Summary

Parameters for passing input files.
graph BT Type["IIssuesParametersInputFiles"] class Type type-node Implementing0["IssuesParametersInputFiles"]-.->Type click Implementing0 "/api/Cake.Frosting.Issues.Recipe/IssuesParametersInputFiles"

Syntax

public interface IIssuesParametersInputFiles

Properties

Name Value Summary
EsLintJsonLogFilePaths IDictionary<FilePath, IReadIssuesSettings>
Gets list of registered paths to ESLint log files in JSON format.
InspectCodeLogFilePaths IDictionary<FilePath, IReadIssuesSettings>
Gets list of registered paths to InspectCode log files.
MarkdownlintCliJsonLogFilePaths IDictionary<FilePath, IReadIssuesSettings>
Gets list of registered paths to markdownlint-cli log files created with --json.
MarkdownlintCliLogFilePaths IDictionary<FilePath, IReadIssuesSettings>
Gets list of registered paths to markdownlint-cli log files.
MarkdownlintV1LogFilePaths IDictionary<FilePath, IReadIssuesSettings>
Gets list of registered paths to markdownlint log files in version 1.
MsBuildBinaryLogFilePaths IDictionary<FilePath, IReadIssuesSettings>
Gets list of registered paths to MSBuild binary log files.
MsBuildXmlFileLoggerLogFilePaths IDictionary<FilePath, IReadIssuesSettings>
Gets list of registered paths to MSBuild log files created by XmlFileLogger.

Methods

Name Value Summary
AddEsLintJsonLogFile(FilePath) void
Adds a path to a ESLint log file in JSON format.
AddEsLintJsonLogFile(FilePath, IReadIssuesSettings) void
Adds a path to a ESLint log file in JSON format.
AddInspectCodeLogFile(FilePath) void
Adds a path to a InspectCode log file.
AddInspectCodeLogFile(FilePath, IReadIssuesSettings) void
Adds a path to a InspectCode log file.
AddMarkdownlintCliJsonLogFile(FilePath) void
Adds a path to a markdownlint-cli log file created with --json.
AddMarkdownlintCliJsonLogFile(FilePath, IReadIssuesSettings) void
Adds a path to a markdownlint-cli log file created with --json.
AddMarkdownlintCliLogFile(FilePath) void
Adds a path to a markdownlint-cli log file.
AddMarkdownlintCliLogFile(FilePath, IReadIssuesSettings) void
Adds a path to a markdownlint-cli log file.
AddMarkdownlintV1LogFile(FilePath) void
Adds a path to a markdownlint log file in version 1.
AddMarkdownlintV1LogFile(FilePath, IReadIssuesSettings) void
Adds a path to a markdownlint log file in version 1.
AddMsBuildBinaryLogFile(FilePath) void
Adds a path to a MSBuild binary log file.
AddMsBuildBinaryLogFile(FilePath, IReadIssuesSettings) void
Adds a path to a MSBuild binary log file.
AddMsBuildXmlFileLoggerLogFile(FilePath) void
Adds a path to a MSBuild log file created by XmlFileLogger.
AddMsBuildXmlFileLoggerLogFile(FilePath, IReadIssuesSettings) void
Adds a path to a MSBuild log file created by XmlFileLogger.

Extension Methods

Name Value Summary
NotNull<IIssuesParametersInputFiles>(string) void
Throws an exception if the specified parameter's value is null.
GitHub