User475983607 posted
I have a netstandard X.X Class Library that I need to upgrade to NET5.
So far I have changed the TargetFramework to say Net5.0.
Is there anything else I need to do to make that project upgrade to NET5.0
It depends on what libraries you are using. Read the migration docs to be sure to be sure you are not using any deprecated classes or methods.
https://docs.microsoft.com/en-us/aspnet/core/migration/31-to-50?view=aspnetcore-5.0&tabs=visual-studio
Tried to create a folder Interfaces but when I create an Interface it doesn't give me the option to change where the Interface needs to be created. How can I get these interfaces out of the
way?
I'm not sure what problem you are having.
I place the interface and the implementation in the same file. I feel it's easier then switching between tabs. But, an interface can exist is any folder, file, even another project. The key is paying attention to the interface's
namespace.
using myproject.myinterfaces