Primo Software
vscode dotnet csharp cpp windows ubuntu macos linux

Getting Started with .NET and Visual Studio Code on Windows

Before going through these steps make sure you have done Setup .NET development environment on Windows

Visual Studio Code

Download and install from Visual Studio Code site.

Open Visual Studio Code and press Ctrl + Shift + P. Select Shell Command: Install 'code' command in PATH.

Close Visual Studio Code.

read more

Setup .NET development environment on Windows

Setup for Windows

Scripts are PowerShell.

Download the dotnet-install.ps1 script

Invoke-WebRequest 'https://dot.net/v1/dotnet-install.ps1' -OutFile 'dotnet-install.ps1';
read more

Getting Started with C++ and Visual Studio Code on Windows

Before going through these steps make sure you have done Setup C++ development environment on Windows

Visual Studio Code

Download and install from Visual Studio Code site.

Open Visual Studio Code and press Cmd + Shift + P. Select Shell Command: Install 'code' command in PATH.

read more

Setup C++ development environment on Windows

These steps were tested on Windows 11, 23H2. Scripts are PowerShell.

Visual Studio 2022

This is needed for the C++ compiler. Install Visual Studio 2022 Community Edition.

During installation select C++ desktop development and latest Windows 10 and Windows 11 SDKs.

After installation open Visual Studio and check for updates. Install the latest 2022 version that is available.

read more

Getting Started with .NET and Visual Studio Code on Ubuntu

Before going through these steps make sure you have done Setup .NET development environment on Ubuntu

Visual Studio Code

Download and install from Visual Studio Code site.

Open Visual Studio Code and press Ctrl + Shift + P. Select Shell Command: Install 'code' command in PATH.

Close Visual Studio Code.

read more

Setup .NET development environment on Ubuntu

Setup for Ubuntu

Download the dotnet-install.sh script

cd
curl -sSL https://dot.net/v1/dotnet-install.sh > dotnet-install.sh
chmod +x dotnet-install.sh
read more

Getting Started with C++ and Visual Studio Code on Ubuntu

Before going through these steps make sure you have done Setup C++ development environment on Ubuntu

Visual Studio Code

Download and install from Visual Studio Code site.

Open Visual Studio Code and press Cmd + Shift + P. Select Shell Command: Install 'code' command in PATH.

read more

Setup C++ development environment on Ubuntu

These steps were tested on Ubuntu 22.04.3 LTS. Scripts are bash.

Compilers

sudo apt install build-essential
read more
vscode dotnet csharp cpp windows ubuntu macos linux