Fixed the command line args

Fixed the args parameter to compile using lprun.exe
This commit is contained in:
Naveen
2015-10-02 15:56:06 -04:00
parent 4f89ce394d
commit cd14063339
5 changed files with 6 additions and 7 deletions

View File

@@ -33,4 +33,4 @@ async Task Main(string[] args)
Console.WriteLine("And GitHub thinks it is a {0} project", repository.Language);
}
}

View File

@@ -8,7 +8,7 @@
<Namespace>System.Threading.Tasks</Namespace>
</Query>
async Task Main()
async Task Main(string[] args)
{
var owner = string.Empty;
var reponame = string.Empty;

View File

@@ -7,7 +7,7 @@
<Namespace>System.Reactive.Linq</Namespace>
</Query>
void Main()
void Main(string[] args)
{
var owner = string.Empty;

View File

@@ -10,7 +10,7 @@
<Namespace>System.Threading.Tasks</Namespace>
</Query>
async Task Main()
async Task Main(string[] args)
{
//This makes discovering code fun!!
var client = new GitHubClient(new Octokit.ProductHeaderValue("octokit"));

View File

@@ -8,7 +8,7 @@
<Namespace>System.Threading.Tasks</Namespace>
</Query>
async Task Main()
async Task Main(string[] args)
{
var userName = string.Empty;
GitHubClient client = new GitHubClient(new Octokit.ProductHeaderValue("Octokit.Samples"));
@@ -33,5 +33,4 @@ async Task Main()
var allissues = await issuesclient.GetAllForRepository("octokit", "octokit.net");
allissues.Select(a => new { a.Title, a.Body}).Dump();
}
}