in my project i've installed ServiceStack v. 6.9.0. Now I'm trying to update to v.6.10.0, but i'm getting the following error Package restore failed. Rolling back package changes My project is .NET 6.
I'ave also tried to update to .NET 7 but nothing changes. Can someone help me?
All ServiceStack Project Templates use wildcard for their .csproj dependencies, e.g:
<ItemGroup>
<PackageReference Include="ServiceStack" Version="6.*" />
</ItemGroup>
If you change it to wildcards then do a dotnet restore it will install the latest version on NuGet which is v6.10.0. If you have a dependency that's blocking the install of the latest version it should show up in the error messages.