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