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.MsBuild.
Summary
Gets an instance of a provider for issues reported as MsBuild warnings using specified settings.
- Assembly
- Cake
.Issues .MsBuild .dll - Namespace
- Cake
.Issues .MsBuild - Containing Type
- MsBuildIssuesAliases
Syntax
public static IIssueProvider MsBuildIssues(this ICakeContext context, MsBuildIssuesSettings settings)
Examples
Read issues reported as MsBuild warnings:
var settings =
new MsBuildIssuesSettings(
@"c:\build\msbuild.xml",
MsBuildXmlFileLoggerFormat);
var issues =
ReadIssues(
MsBuildIssues(settings),
@"c:\repo");
Attributes
Type | Description |
---|---|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
settings | Ms |
Settings for reading the MSBuild log. |
Return Value
Type | Description |
---|---|
IIssueProvider | Instance of a provider for issues reported as MsBuild warnings. |