I have some pretty standard NuGets that i've used constantly with asp.net core 3.1 projects. I am starting a new project and was going to use version .net 5.0, yes my project is set to 5.0. whenever I try to install the follow NuGets either cli or gui in VS
these install fine with my new vanilla 5.0 project..
dotnet add %1 package Microsoft.AspNetCore.Identity.EntityFrameworkCore -v 5.0.9
dotnet add %1 package Microsoft.EntityFrameworkCore -v 5.0.9
dotnet add %1 package Microsoft.EntityFrameworkCore.Tools -v 5.0.9
dotnet add %1 package Microsoft.CodeAnalysis.Common -v 3.11.0
however these 3 fail
dotnet add %1 package Microsoft.VisualStudio.Web.CodeGeneration.Design -v 5.0.2
dotnet add %1 package Microsoft.EntityFrameworkCore.SqlServer -v 5.0.9
dotnet add %1 package Microsoft.CodeAnalysis.CSharp.Workspaces -v 3.11.0
with a generic message of "Invalid character in the given encoding. Line 1, position 1.
this is not my project i've created a brand new project.. Also i just updated to latest version of VS community 2019 version 16.11.0 , today thinking well maybe that was it. I also started Vstudio as admin then opened my project.. i'm out of ideas here :( . this seems like a bug with the Microsoft Nuget packages?? anyone else having issues ?
