I\'ve got alot of projects and I don\'t have a master solution with everything in it. The reason I want one is for refactoring.
So I was wondering if anybody knew a
In 2018, you can use dotnet sln command to add project to an existing solution and dotnet new sln to create a new one.
To add all projects from current folder use these commands in PowerShell
dotnet new sln Get-ChildItem -Recurse *.csproj | ForEach { dotnet sln add $_.FullName }