Macocian Alexandru Victor

Results 4 comments of Macocian Alexandru Victor
trafficstars

I'm able to replicate it. When you close toolbox, it doesn't crash Guild Wars executable or doesn't throw anywhere, it simply destroys the API. So probably it's somewhere in GWCA...

Another thing to note, if I copy the generated code from `UseRoutes()` inside `Program.cs`, call it `UseRoutes2()` and call that one instead, I no longer have the issue described above....

Is most probably related to this https://learn.microsoft.com/en-us/aspnet/core/fundamentals/aot/request-delegate-generator/rdg?view=aspnetcore-9.0 But the delegate generator doesn't seem to work for the generated code?

For anybody facing a similar issue, I've fixed this by generating a deferred class of type `IResult` whose job is to execute the inner task on `ExecuteAsync` Solution: ```C# public...