Background
I'm working on a big project with multiple large solutions. All in all we have over 400 C#-Projects. In the past we used Nuget with the packages.config
file for our dependencies. Now we want to migrate all of the projects to the new PackageReference
format.
Problem
I know Visual Studio provides a solution for migrating a single project from packages.config
to the PackageReference
format, but I'm not aware of a solution where I can migrate multiple Visual Studio Solutions at once. I don't need the compatibility check of Visual Studio, because all used packages are compatible with the new format.
Question
Is there a convenient way of migrating multiple Visual Studio Solutions at once from packages.config
to the PackageReference
format?