-
Notifications
You must be signed in to change notification settings - Fork 420
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove not used middleware extension methods and unify adding middleware #2340
Remove not used middleware extension methods and unify adding middleware #2340
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks
Hi @filipw, Can this be merged or is there something missing? |
3 similar comments
Hi @filipw, Can this be merged or is there something missing? |
Hi @filipw, Can this be merged or is there something missing? |
Hi @filipw, Can this be merged or is there something missing? |
…into cieciurm/remote-unused-middleware-extensions
…//github.com/cieciurm/omnisharp-roslyn into cieciurm/remote-unused-middleware-extensions
Hi @filipw , Can this be merged or is there something missing? |
thanks! |
Hi,
I was browsing through the code and noticed that in the HTTP server, the middlewares are added directly using
UseMiddleware<T>
and not through the extension methods except forLoggingMiddleware
, which is using the extension method.Here's my PR with a suggestion to unify this code.