Skip to content

Commit

Permalink
Remove async main
Browse files Browse the repository at this point in the history
  • Loading branch information
BlythMeister committed Feb 18, 2020
1 parent 4664cd5 commit 22edc5f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/PaketChain/Program.cs
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
using McMaster.Extensions.CommandLineUtils;
using System;
using System.Diagnostics;
using System.Threading.Tasks;

namespace PaketChain
{
internal class Program
{
public static async Task<int> Main(string[] args)
public static int Main(string[] args)
{
try
{
return await CommandLineApplication.ExecuteAsync<RunnerArgs>(args);
return CommandLineApplication.Execute<RunnerArgs>(args);
}
finally
{
Expand Down

0 comments on commit 22edc5f

Please sign in to comment.