You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ServiceControl uses regular ASP.NET controllers. It would be desirable to move to minimal API for the following reasons:
minimal API is AOT friendly; it would be a step towards enabling AOT in ServiceControl
minimal API doesn't require assembly scanning to locate controllers, which simplifies acceptance tests
When facing the task, it's important to keep in mind the impact of moving from well-scoped controllers to something with no easy way to cluster related HTTP request handlers together. For example, one option is to define sort of "modules," and then use extension methods to configure HTTP endpoints.
The text was updated successfully, but these errors were encountered:
ServiceControl uses regular ASP.NET controllers. It would be desirable to move to minimal API for the following reasons:
When facing the task, it's important to keep in mind the impact of moving from well-scoped controllers to something with no easy way to cluster related HTTP request handlers together. For example, one option is to define sort of "modules," and then use extension methods to configure HTTP endpoints.
The text was updated successfully, but these errors were encountered: