I have some doubts about developing applications in .NET Core using Visual Studio Code:
I have some doubts about developing applications in .NET Core using Visual Studio Code:
I think I can answer all your questions with an example, but I can tell you that you will start using the command line instead of performing all the operations as it is in Visual Studio.
See some commands:
dotnet new sln # Cria a solution do seu projeto
dotnet new [template_name] -o [output path] # Cria o seu projeto
dotnet sln [sln_name] add [csproj_name] # Adiciona o seu projeto a solution criada.
Just to exemplify the above commands:
dotnet new sln
mkdir src
dotnet new classlib -o src\ProjetoExemplo.Core\
dotnet sln ProjetoExemplo.sln add src\ProjetoExemplo.Core\ProjetoExemplo.Core.csproj
With this you can compile your projects separately and you can open your main project folder in Visual Studio Code.
You can get more details about organization of the .net core project with a series of #