Using the code below I am trying to use octokit.net to connect to the jquery repository, but the code never seems to reach the print statement. Is there any reason why this is the case, I know the await keyword is causing the delay but the core issue is why I can't connect to the repository. Thanks
static async void test()
{
var client = new GitHubClient(new ProductHeaderValue("OctokitTestsJordan"));
var repository = await client.Repository.Get("jquery", "jquery");
Console.WriteLine("aa");
}