Pranav K

Results 84 comments of Pranav K

API review: 👍🏽 all the points @JamesNK raises. It's a bit difficult to reason about what to do when `GetEndpoint()` returns null. A alternative we might consider is to bump...

Thanks for the issue report. You're right, looks like the author of the other issue closed it without a resolution. We're putting this in our backlog and we'll look in...

Have you looked at the Debug logs Blazor currently includes? The component lifecycle methods aren't as fine-grained as you mention here, but you can glean a some of the details...

There's a way to get console loggers to include timestamps: https://docs.microsoft.com/dotnet/core/extensions/console-log-formatter#set-formatter-with-configuration. One thing to note is that the logging does not include the end times, so you kinda have to...

Those look like reasonable changes. If you happen to have the time, could you try doing a before / after of our benchmarks: https://github.com/dotnet/aspnetcore/tree/main/src/Components/benchmarkapps/Wasm.Performance? Logging typically has no impact when...

You could change your `app` element to show a spinner: ```razor ```

Yup, I think @DamianEdwards is right. We'll have another look at this.

It's weirder - the AuthZ middleware will evaluate the fallback policy since it does not see the filter, and MVC will then execute the filter. Applying the attribute directly to...

Build time compilation is picking up a `global using Microsoft.AspNetCore.Routing;` from the implicit usings feature. Runtime compilation does not support global usings that were added to the app. Your best...

Does your app reference the RuntimeCompilation package? With dotnet-watch, we let runtime compilation take over since they're both designed to solve the same problem.