I've been trying to figure out if it's possible to use Amazon Q in Visual Studio for upgrading a .NET Core 2.1 project to .NET 8.0. Unfortunately, I haven't found any resources that specifically address this type of upgrade; I've only seen information on moving from the .NET Framework to .NET Core. Does anyone have insights or advice on this?
1 Answer
Upgrading from .NET 2.1 to 8 can be quite challenging, especially depending on how extensive your codebase is. It's not going to be an easy job; you'll need to carefully check what features have been deprecated and what still works. Going through each piece of code and function is essential to avoid issues later on.
Absolutely! Doing it manually can be really tedious. I was hoping for some tools or guidance to help automate parts of this upgrade.