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.PullRequests.
                            
	
		Summary
            Reports issues to pull requests.
            
		- Assembly
- Cake.Issues .PullRequests .dll 
- Namespace
- Cake.Issues .PullRequests 
- Containing Type
- Aliases
Syntax
public static PullRequestIssueResult ReportIssuesToPullRequest(this ICakeContext context, IEnumerable<IIssueProvider> issueProviders, IPullRequestSystem pullRequestSystem, DirectoryPath repositoryRoot)Examples
Report issues reported as MsBuild warnings to a TFS pull request:
ReportIssuesToPullRequest(
        new List<IIssueProvider>
        {
            MsBuildIssuesFromFilePath(
                @"C:\build\msbuild.log",
                MsBuildXmlFileLoggerFormat),
            InspectCodeFromFilePath(
                @"C:\build\inspectcode.log")
        },
        TfsPullRequests(
            new Uri("http://myserver:8080/tfs/defaultcollection/myproject/_git/myrepository"),
            "refs/heads/feature/myfeature",
            TfsAuthenticationNtlm()),
        @"C:\repo");Attributes
| Type | Description | 
|---|---|
| Cake | |
| Cake | 
Parameters
| Name | Type | Description | 
|---|---|---|
| context | ICakeContext | The context. | 
| issueProviders | IEnumerable | The list of provider for issues. | 
| pullRequestSystem | IPullRequestSystem | The pull request system. | 
| repositoryRoot | DirectoryPath | Root path of the repository. | 
Return Value
| Type | Description | 
|---|---|
| Pull | Information about the reported and written issues. | 
