Sunday, January 03, 2021

DotNet - Manage solution file

Create new solution, the name will be derived from the containing folder - in this case it will be called tmp.sln
u1@m1:~/tmp$ dotnet new sln

Create new solution with the given name, in this case it is called test.sln
u1@m1:~/tmp$ dotnet new sln --name test

Add project myprj to test.sln
u1@m1:~/tmp$ dotnet sln test.sln add myprj/myprj.csproj

No comments:

Emacs with SLIME for interactive development with SBCL on Windows 11

Emacs with SLIME for interactive development with SBCL Version info: - OS: Windows 11 23H2 (Microsoft Windows [Version 10.0.22631.7079]) ...