Skip to content

Commit

Permalink
Merge branch 'main' into mst/middleware-factory
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib authored Feb 17, 2024
2 parents 12c049a + 554fdc0 commit 042ab70
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/HotChocolate/Fusion/src/CommandLine/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@ namespace HotChocolate.Fusion.CommandLine;
public static class Program
{
[RequiresUnreferencedCode("HotChocolate.Fusion is not trim compatible.")]
public static async Task Main(string[] args)
public static async Task<int> Main(string[] args)
{
var builder = App.CreateBuilder();

var app = builder.Build();

await app.InvokeAsync(args);
return await app.InvokeAsync(args);
}
}


0 comments on commit 042ab70

Please sign in to comment.