I want to try Visual Studio Code to compile the typical "Hello World" in C#. I did the following:
- I installed Visual Studio Code.
- I added the extension C# for Visual Studio Code (OmniSharp).
- I installed the 64-bit SDK 2.1.10.
- I created a folder to contain the project I want to create.
- I opened the folder with Visual Studio Code. On the terminal I wrote:
dotnet new console
but, unlike the tutorials I see on the web, nothing happens. The project is not created but I do not see any error messages either.
I appreciate the help to know how to create, edit and compile a project in C# from Visual Studio Code.




dotnet new console -o myAppin your terminal?dotnet new consolefrom a terminal, instead of running from the terminal in vs code?