Visual Studio Code is a great code editor and fully compatible with Unity. If you don't know it and you want to start working with it; this little tutorial is for you π
Visual Studio dev tools & services make app development easy for any platform & language. Try our Mac & Windows code editor, IDE, or Azure DevOps for free. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications.
Unity Tutorial Level: Beginner.
2.1 Why Visual Studio Code?
Due to the Unity's announcement in which talks about 'MonoDevelop' will no longer be the default code editor for the next releases of Unity game engine (see https://blogs.unity3d.com/en/2018/01/ 05 / discontinuing-support-for-monodevelop-unity-starting-in-unity-2018-1 /); those who still use this editor need to move to another software. In this way, Unity gives the users the opportunity to choose among code editors such as Visual Studio (in its Community or Code versions) or JetBrains.
We prefer Visual Studio Code, which is a free, powerful and easy to use code editor developed by Microsoft.
2.2 Installing Visual Studio Code.
Installing Visual Studio Code is a very simple task, you just have to do:
- Visit the Visual Studio Code website ( https://code.visualstudio.com/Download ).
- Choose your Operative System and download the Installer.
3. Open the Installer and follow its instructions (is not necessary to modify something, the default settings are suitable to have a functional Visual Studio Code in our computers).
Β‘Visual Studio Code is Now Installed!
2.3 Installing C# in VS Code.
To start coding in C# (C Sharp) language and be able to work with Unity, we need to:

- Install βMicrosoft .Net Core SDKβ in our computers; visit the following link to obtain the installer: https://www.microsoft.com/net/learn/get-started/windows.
- Open the βMicrosoft .Net Core SDKβ installer and follow its steps to complete the installation (is a very simple process).
3. Restart your computer, then Microsoft .Net Core SDK will be ready.
With βVisual Studio Codeβ and βMicrosoft .Net Core SDKβ installed in your computer, the next step is getting the βC#β extension for Visual Studio Code. There are two methods to do this:
- The first way is through the Visual Studio's βMarketplaceβ website (https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp). By clicking on the βInstallβ button the system will start 'Visual Studio Code' in our computers in order to continue with the installation.
- The second way is by opening 'Visual Studio Code' in our computers, then click on the βExtensionsβ icon (or from the Menu bar: View β Extensions). Once the 'Extensions' window is shown, type in the search bar βC#β and then choose: βC#C# for Visual Studio Code (powered by OmniSharp)β.
On both ways Visual Studio Code must be open and we have to see something similar to the above picture (Visual Studio Code showing the 'C#' Extension), now just click on the βInstallβ button.
Β‘We can Start Coding in C#!, we just need to enable Visual Studio Code within Unity.
2.4 Enabling Visual Studio Code in Unity.
Enabling Visual Studio Code as the default Code Editor inside Unity is very easy, just follow the next steps:
- Open a Unity Project (new or existing).
- From the Menu bar go to Edit β Preferences, this opens the βUnity Preferencesβ window.
3. In βUnity Preferencesβ, at the leftcolumn click on βExternal Toolsβ, this window now will show the βExternal Toolsβ information and here we have to select βBrowseβ from the βExternal Script Editorβ drop-down list .
4. We have to search for the code editor β.exeβ (for Windows) or β.appβ (for macOS) file. For Visual Studio Code on Windows, the required file is βCode.exeβ and can be found at βC:Program FilesMicrosoft VS Codeβ (or C:Program Files (x86)Microsoft VS Code). On macOS, the file is βCode.appβ and can be found at β/Applicationsβ. Finally, this βUnity Preferencesβ section will be shown like this:
Β‘Now We Can Use Unity with Visual Studio Code!

This Tutorial about how to install Visual Studio Code and how to enable it inside Unity ends here. Follow us in the next tutorials to learn more about the amazing Game Development World.
If you want to know more about Visual Studio Code for Unity, visit https://code.visualstudio.com/docs/other/unity or, do not hesitate to contact us for any questions or advice by clicking 'Here'

1. First Steps with Unity
2. Installing Visual Studio Code for Unity
More Tutorials
There are tons of articles online tells us it is 2020, we should use the Visual Studio code, which is a good coding tool (or IDE) with numerous extensions. This article is the complete and most easy guide on how to config your Visual Studio Code.
Visual Studio For Mac Visual Basic
Things I am using:
- Macbook Pro 2017
- Unity: 2019.3.15f1
- Visual Studio Code: 1.46.0
Step 1: Install the .Net Core SDK, you can download the SDK from here: https://dotnet.microsoft.com/download
The latest version as of today is .NET Core 3.1
. Download the pkg/dmg file and install.
Step 2: Install the mono
, someone also suggested to download from its official website from: https://www.mono-project.com/download/stable/, I tried but not successful. Here I would show how I installed, copy and paste the following command to your terminal:
After installation, you should be able to see a path in your terminal, this is IMPORTANT, keep the path!:
You probably see a different version 6.8.0.123
here, which doesn't matter.
Step 3: Install necessary extensions:
Some extensions are necessary for project and coding, such as code auto compeletion, code formatting and so on. I would recommend the following three extensions:
Step 4: many tutorials claimed they already successfully with above three steps. However it doesn't work for me, some essential features are missing, i.e. VS Code even can't auto complete the Rigidbody2D for me. After googled around, I found the following trick:
Visual Studio Unity Tutorial
Go to Code
-> Preferences
-> Settings
, then search mono
, and click Edit in settings.json
.
Visual Studio Mac Unity Download Pc

Visual Studio Mac Unity Download Windows 10
Then in the opened setting.json
,
search and find mnisharp.monoPath
and put the path from step 2, and change the value of omnisharp.useGlobalMono
to always
, one example of my configuration:
Install Visual Studio Mac
Quit and restart your Visual Studio Code to make the changes effective.
Wala~