ReportIssuesToBuildServerSettings Class

Summary

Settings affecting how issues are reported to build servers.
graph BT Type-->Base0["RepositorySettings"] click Base0 "/api/Cake.Issues/RepositorySettings" Base0-->Base1["Object"] Type-.->Interface0["IReportIssuesToBuildServerSettings"] click Interface0 "/api/Cake.Issues.BuildServer/IReportIssuesToBuildServerSettings" Type-.->Interface1["IRepositorySettings"] click Interface1 "/api/Cake.Issues/IRepositorySettings" Type-.->Interface2["IHasIssueFiltering"] click Interface2 "/api/Cake.Issues.Shared/IHasIssueFiltering" Type["ReportIssuesToBuildServerSettings"] class Type type-node Derived0["ReportIssuesToBuildServerFromIssueProviderSettings"]-->Type click Derived0 "/api/Cake.Issues.BuildServer/ReportIssuesToBuildServerFromIssueProviderSettings"

Syntax

public class ReportIssuesToBuildServerSettings : RepositorySettings, 
    IReportIssuesToBuildServerSettings, IRepositorySettings, IHasIssueFiltering

Constructors

Name Summary
ReportIssuesToBuildServerSettings(DirectoryPath) Settings affecting how issues are reported to build servers.

Properties

Name Value Summary
IssueFilters IList<Func<IEnumerable<IIssue>, IEnumerable<IIssue>>>
Gets list of filter functions which should be applied before posting issues.
MaxIssuesToPost Nullable<int>
Gets or sets the global number of issues which should be posted at maximum over all IIssueProvider. Issues are filtered by Priority and issues with an AffectedFileRelativePath are prioritized. Default is null which won't set a global limit.
MaxIssuesToPostForEachIssueProvider Nullable<int>
Gets or sets the number of issues which should be posted at maximum for each IIssueProvider. Issues are filtered by Priority and issues with an AffectedFileRelativePath are prioritized. null won't limit issues per issue provider. Default is to filter to 100 issues for each issue provider.
ProviderIssueLimits Dictionary<string, int>
Gets the issue limits for individual IIssueProvider. The key must be the ProviderType of a specific provider to which the limits should be applied to. Use MaxIssuesToPostForEachIssueProvider to set the same limit to all issue providers.
RepositoryRoot DirectoryPath
Gets the Root path of the repository.
Inherited from RepositorySettings

Extension Methods

Name Value Summary
Dump<ReportIssuesToBuildServerSettings>() string
Get a basic string representation of specified object.
Requires the Cake.Incubator addin
IsIn<ReportIssuesToBuildServerSettings>(ReportIssuesToBuildServerSettings[]) bool
Checks if the source is contained in a list
Requires the Cake.Incubator addin
NotNull<ReportIssuesToBuildServerSettings>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Issues addin
NotNull<ReportIssuesToBuildServerSettings>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Ftp addin
ThrowIfNull<ReportIssuesToBuildServerSettings>(string, string) T
Throws a System.ArgumentNullException with a specific message if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ThrowIfNull<ReportIssuesToBuildServerSettings>(string) T
Throws a System.ArgumentNullException if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ToDictionary() IDictionary<string, object>
Requires the Cake.DeployParams addin
ToStringWithNullMarkup() string
Returns the string value or a Not set> markup suitable for Spectre.Console.
Requires the Cake.Issues addin