Hacker News new | ask | show | jobs
by rharb 1682 days ago
The dotnet CLI has the means for creating and maintaining solution files as well, for example:

`dotnet new sln

dotnet new console --output folder1/folder2/myapp

dotnet sln add folder1/folder2/myapp`

will result in something more like the new project experience from Visual Studio.

https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-sl...