acarrazzoni-qontigo
✅ How do I pin both NET 8 and NET 6 sdk versions in global.json?
I'm afraid I can't anonymize my repo since the csproj files contain dependencies on internal nuget packages. All of the errors that appear are
Unable to find package Microsoft.NETCore.App.Ref with version (= 6.0.35)
Unable to find package Microsoft.WindowsDesktop.App.Ref with version (= 6.0.35)
Unable to find package Microsoft.AspNetCore.App.Ref with version (= 6.0.35)
42 replies
✅ How do I pin both NET 8 and NET 6 sdk versions in global.json?
nuget restore fails for some projects because something wants version 6.0.35 of the Microsoft.NETCore.App.Ref and Microsoft.WindowsDesktop.App.Ref packages. this is despite using the 8.0.204 SDK
42 replies
✅ How do I pin both NET 8 and NET 6 sdk versions in global.json?
I have several solutions that target both net 6 and net 8. I can't share the csproj files, sorry. What I need is to pin Microsoft.NETCore.App.Ref to a certain 6.0.x version for NET 6 projects, and a 8.0.x version for NET 8 projects
42 replies
How to pin Microsoft.NETCore.App.Ref version
I'm already referencing that package like that in the first place. When I build the class library I get this error. I have nuget.org disabled and version 6.0.32 in my nuget repositories. How can I pin that package to version 6.0.31?
Unable to find package Microsoft.NETCore.App.Ref with version (= 6.0.32)
8 replies