Pranav K

Results 84 comments of Pranav K

Yup, that's the one. You could remove the package reference if you are currently only using it during development.

@HybridSolutions thanks for the detailed writeup. Our current heuristic chooses to not refresh the browser for code changes if Blazor is running in the app. We had previously tried relying...

@HybridSolutions for the immediate future we're going to rely on users having to manually refresh the browser in this particular case. For a longer term, we were looking at building...

@schmitch there's a fair bit of documentation about deploying Blazor with Azure SignalR Service here: https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/blazor/server?view=aspnetcore-3.1#signalr-configuration which states that sticky sessions are required. https://docs.microsoft.com/en-us/aspnet/core/blazor/state-management?view=aspnetcore-3.1 also covers some details about how...

Do you happen to have a minimal app that reproduces the issue? We haven't seen previous reports of this so it's difficult to tell what might be going wrong.

@Nicholas-Westby thanks for sharing the app. Oddly, publishing the app works for me. The app runs, I see the Umbraco account creation dialog, and then the screen you shared. I...

Thanks again @Nicholas-Westby. Is the file in the `bin\Release\net6.0\publish\refs` directory? The build log says it does exist there: Did not copy from file "~\.nuget\packages\system.security.cryptography.pkcs\5.0.0\ref\netcoreapp3.0\System.Security.Cryptography.Pkcs.dll" to file "bin\Release\net6.0\publish\refs\System.Security.Cryptography.Pkcs.dll" because the "SkipUnchangedFiles"...

@shapeh the milestone tracks ongoing work - it does not necessarily reference the release we'd target for a fix.

Here's what the StackOverflow answer that @shapeh linked to recommends - in your project file, add the following MSBuild property: ```xml true ``` Given that developers can add this setting...

I did a search for uses of ValueTask in * SDK: https://github.com/dotnet/sdk/search?p=2&q=ValueTask - All of these are in dotnet-watch, one of which trips the code analysis rule * NuGet: No...