vscode
dotnet
csharp
cpp
windows
ubuntu
macos
linux
vscode
dotnet
csharp
cpp
windows
ubuntu
macos
linux
Before going through these steps make sure you have done Setup .NET development environment on Windows
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.
Scripts are PowerShell.
Download the dotnet-install.ps1
script
Invoke-WebRequest 'https://dot.net/v1/dotnet-install.ps1' -OutFile 'dotnet-install.ps1';
Before going through these steps make sure you have done Setup C++ development environment on Windows
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
.
These steps were tested on Windows 11, 23H2. Scripts are PowerShell
.
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.
Before going through these steps make sure you have done Setup .NET development environment on Ubuntu
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.
Download the dotnet-install.sh
script
cd
curl -sSL https://dot.net/v1/dotnet-install.sh > dotnet-install.sh
chmod +x dotnet-install.sh
Before going through these steps make sure you have done Setup C++ development environment on Ubuntu
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
.
These steps were tested on Ubuntu 22.04.3 LTS. Scripts are bash
.
sudo apt install build-essential
vscode
dotnet
csharp
cpp
windows
ubuntu
macos
linux