Andrew White
Andrew White
Would love to see **span** tag support. I use them as markers for dynamic updates of content in my build process and they look terrible in NuGet readme view: https://www.nuget.org/packages/Finbuckle.MultiTenant#readme-body-tab
Hi, I think I can help. I will be able to check out the repo tomorrow. I appreciate the sponsorship as well.
Ok on the 1st issue: You are adding `[ExcludeFromMultiTenantResolution]` on the model class and method. Instead add it on the razor page for `NoTenant.cshtml` below `@page`: ``` @using Finbuckle.MultiTenant.AspNetCore.Routing @attribute...
Well that’s no good! I have some more time today to dig in deeper.
Yeah what I'm seeing is that we have fundamental issue with `ExcludeFromMultiTenantResolution` which relies on routing having already happened and the `BasePath` strategy which typically executes before routing (this fixes...
Regarding 2: When you don't have an explicit call to `UseAuthentication` an implicit one is placed at the beginning of the pipeline (similar to `UseRouting`). During the authentication it is...
I’ll have to make exclude a little smarter. It was recently added and assumes endpoints are in play which is not always the case. It probably needs to be a...
@wxwyz can you give some use cases where this would be beneficial. Also do you have any unit tests or documentation file updates to go along with it?
@wxwyz I reviewed it all and it looks great. The short circuiting is something I'd been noodling a while so I like that too. Last request would be that you...