In Visual Studio 2008, what determines the order in which projects appear within a solution folder? It\'s not alphabetical order, nor is it build order.
I cannot find an
The dotnet sln add command reorder all projects in all folders in solution for me.
Simply add at least one project with the following command to your solution:
dotnet sln $Solution add --solution-folder $SolutionFolder $projectPath
Or without a solution folder:
dotnet sln $Solution add --in-root $projectPath