Skip to content

Instantly share code, notes, and snippets.

@brccabral
Created February 26, 2026 23:32
Show Gist options
  • Select an option

  • Save brccabral/59cf51c81ee2ff43101fd092c891e6ab to your computer and use it in GitHub Desktop.

Select an option

Save brccabral/59cf51c81ee2ff43101fd092c891e6ab to your computer and use it in GitHub Desktop.
C# init Solution with multiple projects

C# init Solution with multiple projects

mkdir SomeSolution
cd SomeSolution
dotnet new sln -n SomeSolution
dotnet new console -o ConsoleApp
dotnet new winforms -o WinFormApp
dotnet sln add ConsoleApp\ConsoleApp.csproj
dotnet sln add WinFormApp\WinFormApp.csproj
dotnet build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment