You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just spotted that NuGet in Visual Studio is saying that package Microsoft.AspNetCore.WebUtilities at 2.2.0 is deprecated.
I have this package installed into my Blazor WebAssembly Client project because I need to call method WebEncoders.Base64UrlEncode.
If I should remove Microsoft.AspNetCore.WebUtilities, how should my Client project perform base64 URL encoding?
(I note that my Server project is still able to call WebEncoders methods, and doesn't have the deprecated package installed anyway.)
This resource says that WebEncoders.Base64UrlEncode lives in package Microsoft.AspNetCore.App.Ref but NuGet tells me that I shouldn't install that package as it's an internal thing.