6 instantiations of GitHubClient
Microsoft.DotNet.VersionTools (3)
src\Automation\GitHubVersionsRepoUpdater.cs (1)
74
using (GitHubClient client = new
GitHubClient
(_gitHubAuth))
src\Automation\LocalVersionsRepoUpdater.cs (1)
57
using (var client = new
GitHubClient
(GitHubAuth))
src\Automation\PullRequestCreator.cs (1)
45
using (var client = new
GitHubClient
(_auth))
Microsoft.DotNet.VersionTools.Tasks (3)
src\BaseDependenciesTask.cs (1)
73
using (GitHubClient = new
GitHubClient
(auth))
src\SubmitPullRequest.cs (1)
151
return new
GitHubClient
(auth);
src\UpdateToRemoteDependencies.cs (1)
40
using (var client = new
GitHubClient
(auth))
8 references to GitHubClient
Microsoft.DotNet.VersionTools (5)
src\Automation\GitHubVersionsRepoUpdater.cs (1)
74
using (
GitHubClient
client = new GitHubClient(_gitHubAuth))
src\Automation\LocalVersionsRepoUpdater.cs (1)
57
using (
var
client = new GitHubClient(GitHubAuth))
src\Automation\PullRequestCreator.cs (1)
45
using (
var
client = new GitHubClient(_auth))
src\Automation\VersionsRepoUpdater.cs (2)
46
GitHubClient
client,
76
GitHubClient
client,
Microsoft.DotNet.VersionTools.Tasks (3)
src\BaseDependenciesTask.cs (1)
60
protected
GitHubClient
GitHubClient { get; private set; }
src\UpdateToRemoteDependencies.cs (2)
40
using (
var
client = new GitHubClient(auth))
60
protected DependencyUpdateResults UpdateToRemote(
GitHubClient
client)