Intellisense Visual Studio 2019
Productivity tools for the HTML editor Features
Image hover previewGo to definitionHit Peek definitionHit Meta tagsFull Intellisense provided for:
Dynamic IntellisenseDynamic Intellisense is where Intellisense is based on other tags and attributes etc. Find all referencesHit Light bulbsLight bulbs are added for variuos scenarios including:
ValidationOpenGraph prefixWhen working with Facebook/OpenGraph integration, we need toremember to add the prefix attribute to the MicrodataValidates that the itemtype attribute is a valid absolute URL. rel=logoValidates that the License |
19 April 2020: We’ve updated this article with a contributed solution from one of our readers in the comments section.
IntelliSense for cross-compiling. The article is about configuring the C/C extension to provide proper IntelliSense (code completions) in Visual Studio Code when you compile for a different architecture than your development host machine. For example, when your host machine is. Turning off auto-suggestions in Visual Studio 2019 without turning off IntelliSense. Edit Menu-Intellisense-click Toggle Completion Mode. After that, when you type, it will not cover the code you are working on automatically. Hope it could help you.
One of the biggest perks of using Microsoft’s Visual Studio to write your Unity scripts is IntelliSense — a code completion aid in Visual Studio that offers suggestions as you write your code, and contextually presents you with information about classes, properties and methods that you are working with.

Given Unity’s enormous scripting API, IntelliSense is a tremendously helpful feature, especially for coders who are beginning their foray into developing games and software with Unity; and while we’d love to say that IntelliSense is automatically set up and linked to Unity’s API when you install it with the Unity Editor, sometimes that’s just not the case. So, if you’ve got both Unity and Visual Studio set up, but find that IntelliSense is still not offering Unity API suggestions, then this guide is for you.
Visual Studio Tools HTML Tools 2019. HTML Tools 2019. Mads Kristensen 13,551 installs (3) Free. Productivity tools for the HTML editor. Overview Q & A Rating & Review. Dynamic Intellisense is where Intellisense is based on other tags and attributes etc. Features: Microsoft has added the ability to show items from unimported namespaces when autocompleting with Intellisense. Because of that this plugin does not provide unimported types completions. If using Visual Studio 16.8, enable 'Show items from unimported namespaces' in the Visual Studio options window.
There can be many reasons why IntelliSense is failing to work properly on your device, and we are assuming that you’ve already scoured the Internet a fair bit before stumbling on our article. Hence, we’ve put together a table of contents of sorts below, so if you’ve already tried some of the solutions we have, you can skip right through them.
- Getting IntelliSense working
Article continues after the advertisement:
1. Is my IntelliSense not working?
For IntelliSense to detect and work with Unity’s API, Visual Studio needs to:
- Be linked to the Unity Editor, and;
- Have the appropriate extensions installed (read further to find out what they are)
If you’ve installed Visual Studio via Unity Hub, this can have been automatically set up, but not always. Due to the bevy of ways which you can install Unity and Visual Studio, misconfigurations can happen, and you might end up with Visual Studio not integrating itself into Unity, and an IntelliSense feature that is not properly linked to Unity’s API.
We’ve found that, when installing some versions of Unity 2019 and 2020, Visual Studio does not always integrate with Unity’s API by default. So if things are not working properly, it might not be caused by misconfiguration on your end.
To check if IntelliSense is properly set up, open any script from the Unity Editor, and look out for 2 things:
- Whether the top-left dropdown says Miscellaneous Files. If it does, then IntelliSense is not set up.
- Try declaring a Unity variable, like a
GameObject. If IntelliSense is properly set up, Visual Studio should have an auto-complete suggestion for you before you finish typing.
2. Getting IntelliSense working
So if IntelliSense isn’t working for you, what should you do?
a. Open your scripts from Unity
Before you try anything else from here, first make sure that your scripts are opened from within Unity, i.e. whenever you want to edit your scripts, double-click on them in the Unity Editor so that Visual Studio is opened by Unity.
If IntelliSense still doesn’t work when you do this, then continue onto the steps below:
b. Setting Unity’s External Script Editor
From the Unity Editor, access the Preferences window from Edit > Preferences. Then, click on the External Tools tab.
Set the External Script Editor to the version of Visual Studio that you installed alongside Unity. Then, restart Visual Studio and see if IntelliSense now works. If it still doesn’t, then you might be missing…
If Visual Studio doesn’t appear on the dropdown, you will have to use the Browse… option (pictured above) to find it. It’s typically under C:Program Files (x86)Microsoft Visual Studio2019CommunityCommon7IDEdevenv.exe for Windows devices.
Article continues after the advertisement:
c. Visual Studio Tools for Unity
Disable Intellisense Visual Studio 2019
To install this, open Visual Studio and go to Tools > Get Tools and Features.
Note: You’ll need administrator permissions to open this window, as it makes changes to the Visual Studio installation on your computer.
Once the installer is open, go to Workloads and find Game development with Unity. Check the box, and then click on the Modify button on the bottom-right corner to begin installation.

A popup may ask you to close certain processes before beginning installation. If this happens, close your Visual Studio project and the Unity Editor application.
When installation completes, restart both Unity and Visual Studio, then check to see if IntelliSense now works.
The Games development with Unity workload actually installs 2 additional Visual Studio components — Visual Studio Tools for Unity and C# and Visual Basic. You can install both modules individually by going to the Individual components tab, and checking both components in the list that is shown.
Article continues after the advertisement:
d. Check your .NET API compatibility level
If IntelliSense still refuses to work, you can open the Unity Editor and head to Edit > Project Settings and access the Player (or Player Settings) tab. Scroll down to the Other Settings sub-tab, and find the Api Compatibility Level dropdown under the Configuration heading.
You want to set the Api Compatibility Level to a different option, and see which is the one that works for your device.
e. Regenerating your Unity project files
Intellisense Visual Studio 2019 Not Working
If the above solutions we’ve proposed did not work for you, you can also try this solution from one of our comment contributions.
Note: Back up your Unity project before trying this, as we are deleting some essential project files and letting Unity regenerate them.
- Close both Visual Studio and Unity on your device.
- Remove all
.slnand.csprojfiles in your Unity project folder. - Remove the
.vsandLibraryfolders in your Unity project folder. - Re-open the project in Unity, then go to Assets > Open C# Project to open Visual Studio.
3. Conclusion
As with the other articles on the blog, we’d love if you leave a comment below, especially if you:
- Find any errors in this article, or;
- Find an IntelliSense fix that is not listed in this article
Your comments will add on to the information that is already here, and help other future readers!
Article continues after the advertisement:
