I have a solution containing more .Net Framework projects. I need to move the current application libraries to .Net Standard in order to be used by other projects.
I know I can do this by removing the current projects and recreating them with .Net Standard, then adding each class and dependency back to them, until I finish. This approach is acceptable in my case as the application is not huge, but I wonder if there is an easier way than this.
I was looking for something like the way that Target framework is usually changed for projects:
But there is no entry for .Net Standard here.
