✅ switching from .net framework to 2.0 standard Library, dependencies problem?
I did switch a previously .net Framework 4.8 project to 2.0, but seems like the upgrade assistant in visual studio did not care about the required nugets.
its telling to missing simple system or microsoft dependencys wich has been imported as .dll from the framework from the computer itself. The upgrade assistant did include the nuget for the standardlibrary, I did add the Compartiblity nuget and the PresentationFramework.dll (to be able to show some information messagedialogs if needed) from device, but seems like that is not enough.
Can someone tell me, which imports are recommendable and maybe missing in my list? the data types are quite simple and the compiler before build is not showing an issue, so I do not know which part could cause this... sorry. hopefully anyone can name some general packages to try out? its on windows target if important
2 Replies
From using the upgrade assistant before; I’ve noticed it’s not heavily reliable sometimes. It might be worth upgrading your project manually to desired framework and seeing which packages complain and upgrading to later / newer version or to newer if said package is deprecated
You should be able to see these complaints in build console, or via dependencies on said project / class library - should show a yellow warning symbol on panel.
That’s how I usually resolve a non functioning upgrade assistant at least
Unknown User•3w ago
Message Not Public
Sign In & Join Server To View