Files
octokit.net/samples/linqpad-samples/4-observable-browse-repositories.linq
Naveen e3da87cdfb Removed the integration test options
Removed the integration test options because lprun has compileonly
option.
2015-10-05 19:40:23 -04:00

19 lines
564 B
C#

<Query Kind="Program">
<NuGetReference>Octokit</NuGetReference>
<NuGetReference>Octokit.Reactive</NuGetReference>
<NuGetReference>Rx-Main</NuGetReference>
<Namespace>Octokit</Namespace>
<Namespace>System</Namespace>
<Namespace>System.Reactive.Linq</Namespace>
<Namespace>Octokit.Reactive</Namespace>
</Query>
void Main(string[] args)
{
var owner = string.Empty;
owner = "octokit";
var client = new ObservableGitHubClient(new Octokit.ProductHeaderValue("Octokit.samples"));
client.Repository.GetAllForUser(owner).Select(r => r.Name).Dump();
}