.NET Core provides a fast and modular platform for creating server apps that run on Windows, Linux, and macOS. Use Visual Studio Code with the C# and F# extensions to get a powerful editing experience with C# IntelliSense, F# IntelliSense (smart code completion), and debugging.
Install the following:
Initialize a C# project:
dotnet new console
When the project folder is first opened in VS Code:
Run the app by entering the following command in the command shell:
dotnet run
Watch a video tutorial for further C# setup help on Windows, macOS, or Linux.
Initialize an F# project:
dotnet new console -lang F#
Once it completes, open the project in Visual Studio Code:
code .
Run the app by entering the following command in the command shell:
dotnet run