Tidy up compiler warnings (#1779)

Fix XmlDoc parameter warnings (and tidy up other build output/warnings)
This commit is contained in:
Ryan Gribble
2018-03-07 00:17:52 +10:00
committed by GitHub
parent 3ec01bd05a
commit c223f5ae9a
19 changed files with 49 additions and 26 deletions

View File

@@ -34,7 +34,7 @@ namespace Octokit.Reactive
/// See the <a href="https://developer.github.com/v3/projects/#list-repository-projects">API documentation</a> for more information.
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="repo">The name of the repository</param>
/// <param name="name">The name of the repository</param>
public IObservable<Project> GetAllForRepository(string owner, string name)
{
return GetAllForRepository(owner, name, ApiOptions.None);
@@ -47,7 +47,8 @@ namespace Octokit.Reactive
/// See the <a href="https://developer.github.com/v3/projects/#list-repository-projects">API documentation</a> for more information.
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="repo">The name of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="options">Options for changing the API response</param>
public IObservable<Project> GetAllForRepository(string owner, string name, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -66,7 +67,7 @@ namespace Octokit.Reactive
/// See the <a href="https://developer.github.com/v3/projects/#list-repository-projects">API documentation</a> for more information.
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="repo">The name of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="request">Used to filter the list of projects returned</param>
public IObservable<Project> GetAllForRepository(string owner, string name, ProjectRequest request)
{
@@ -80,7 +81,7 @@ namespace Octokit.Reactive
/// See the <a href="https://developer.github.com/v3/projects/#list-repository-projects">API documentation</a> for more information.
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="repo">The name of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="request">Used to filter the list of projects returned</param>
/// <param name="options">Options for changing the API response</param>
public IObservable<Project> GetAllForRepository(string owner, string name, ProjectRequest request, ApiOptions options)
@@ -113,8 +114,7 @@ namespace Octokit.Reactive
/// <remarks>
/// See the <a href="https://developer.github.com/v3/projects/#list-repository-projects">API documentation</a> for more information.
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="repo">The name of the repository</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="options">Options for changing the API response</param>
public IObservable<Project> GetAllForRepository(long repositoryId, ApiOptions options)
{