April 01, 2024, Abdush Miah
Prefer to watch instead? Click below to watch the steps instead:
Launch your terminal and create your solution
dotnet new sln -o MyAmazingProjectChange directory into your newly created folder e.g:
cd MyAmazingProjectNow inside of your solution create a new class library project
dotnet new classlib -o MyAmazingProject.DataAccessNow inside of your solution create a new console application project
dotnet new console -o MyAmazingProject.ConsoleAppNext add/associate those new projects with your solution using the below command:
dotnet sln MyAmazingProject.sln add ./MyAmazingProject.ConsoleApp