I am currently working on a C# file and my Intellisense doesn't seem to be working on Visual Studio Code. I have tried generating all .csproj files as well as downloading the .Net framework dev pack 4.2 and changed the Api Compatibility Level to .NET 4.x accordingly. An example of intellisense that would be helpful is something simple like
Vector2 touchPosition = Camera.main.ScreenTowWorldPoint(touch.position);
when I type Camera.main. and attempt to use the intellisense I would expect to see the function ScreenToWorldPoint(Vector2) as a possible function I could use but nothing shows.