Skip to content
This repository has been archived by the owner on Apr 6, 2024. It is now read-only.

Commit

Permalink
Improve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Sep 13, 2017
1 parent 23df4ca commit 6cb42ef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/Cake.Issues.PullRequests.Tfs/TfsPullRequestSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;

/// <summary>
/// Settings for <see cref="TfsPullRequestSystem"/>.
/// Settings for <see cref="TfsPullRequestSystemAliases"/>.
/// </summary>
public class TfsPullRequestSettings
{
Expand Down
15 changes: 6 additions & 9 deletions src/Cake.Issues.PullRequests.Tfs/TfsPullRequestSystemAliases.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,16 +127,15 @@ public static ITfsCredentials TfsAuthenticationAzureActiveDirectory(
/// <para>Report code analysis issues reported as MsBuild warnings to a TFS pull request:</para>
/// <code>
/// <![CDATA[
/// var repoRoot = new DirectoryPath("c:\repo");
/// ReportIssuesToPullRequest(
/// MsBuildCodeAnalysis(
/// @"C:\build\msbuild.log",
/// @"c:\build\msbuild.log",
/// MsBuildXmlFileLoggerFormat),
/// TfsPullRequests(
/// new Uri("http://myserver:8080/tfs/defaultcollection/myproject/_git/myrepository"),
/// "refs/heads/feature/myfeature",
/// TfsAuthenticationNtlm()),
/// repoRoot);
/// @"c:\repo");
/// ]]>
/// </code>
/// </example>
Expand Down Expand Up @@ -173,16 +172,15 @@ public static IPullRequestSystem TfsPullRequests(
/// <para>Report code analysis issues reported as MsBuild warnings to a TFS pull request:</para>
/// <code>
/// <![CDATA[
/// var repoRoot = new DirectoryPath("c:\repo");
/// ReportIssuesToPullRequest(
/// MsBuildCodeAnalysis(
/// @"C:\build\msbuild.log",
/// @"c:\build\msbuild.log",
/// MsBuildXmlFileLoggerFormat),
/// TfsPullRequests(
/// new Uri("http://myserver:8080/tfs/defaultcollection/myproject/_git/myrepository"),
/// 5,
/// TfsAuthenticationNtlm()),
/// repoRoot);
/// @"c:\repo");
/// ]]>
/// </code>
/// </example>
Expand Down Expand Up @@ -212,7 +210,6 @@ public static IPullRequestSystem TfsPullRequests(
/// <para>Report code analysis issues reported as MsBuild warnings to a TFS pull request:</para>
/// <code>
/// <![CDATA[
/// var repoRoot = new DirectoryPath("c:\repo");
/// var pullRequestSettings =
/// new TfsPullRequestSettings(
/// new Uri("http://myserver:8080/tfs/defaultcollection/myproject/_git/myrepository"),
Expand All @@ -221,10 +218,10 @@ public static IPullRequestSystem TfsPullRequests(
///
/// ReportCodeAnalysisIssuesToPullRequest(
/// MsBuildCodeAnalysis(
/// @"C:\build\msbuild.log",
/// @"c:\build\msbuild.log",
/// MsBuildXmlFileLoggerFormat),
/// TfsPullRequests(pullRequestSettings),
/// repoRoot);
/// @"c:\repo");
/// ]]>
/// </code>
/// </example>
Expand Down

0 comments on commit 6cb42ef

Please sign in to comment.