In my .NET ASP.Net Core C# project (.NET7 VS2022) I have to use a critical nuget package that is unfortunately running stable just on .NET6. Therefore I am thinking about to rollback to .NET7.The first thing what I have tried is to change from project properties target framework to .NET6. But after compiling I have got an error reg. "project.assets.json" that .NET7 is not installed. In the project.assets.json I found several links to .NET7 dll's. I don't know exactly whether I am using them all.
Is there a systematic approach to downgrade to .NET6 without disturbing the current project?I know that this is not a good solution, but until I get a stable running nuget package for .NET I have no other alternative.