silentdevnull
silentdevnull
Are there any updates on this?
> Are you using [`UsePathBase`](https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.builder.usepathbaseextensions.usepathbase?view=aspnetcore-8.0)? Can you show us your full `Program.cs`? Thank you for the reply No I'm not using path base. Program.cs ``` var builder = WebApplication.CreateBuilder(args); builder.Services.AddRazorComponents()...
> @silentdevnull thanks for the additional details. > > If you are hosting the page in a "virtual directory" (not on the root of the domain) you need to call...
I'm still getting a 404 error on the return. I have tried it the following two ways. ``` app.UsePathBase("/app1"); ``` ``` app.UsePathBase("/app1/"); ``` I have tried changing the Callbackpath in...
> Maybe this is related: [#51929 (comment)](https://github.com/dotnet/aspnetcore/issues/51929#issuecomment-1959110621) Sure looks close to the same type of issue I'm having. My project was like a 2 or 3 day project that now...
> > `options.Conventions.AddPageRoute("/app1/signin-oidc", "/signin-oidc");` > > This seems suspect though. `/signin-oidc` is supposed to be handled by the authentication middleware, please try to remove any extraneous code that you can....
Has anyone gotten this to work or have a work around for it?
@MetaHex Thanks. The only workaround I was able to do was to use two projects and a reverse proxy to route the URL to each project. It is a big...
The file size is a big issue for me at the moment. I had to go back to 4.x. I can't upload any signal file over 25mb to the server,...
Good Morning, Is there an update on this? I'm unable to switch to this until the dll size issue is fixed.