Intellisense doesn't recognize #include paths but project builds normally

Hello,

I’m trying to learn Unreal C++ but I’m having a problem where my module is built normally (either by UE4 or building directly on Visual Studio) but Visual Studio 2015 wont recognize the include directives of my module or other modules I add to the Build.cs class. As a result I cannot rely on Intellisense to auto complete and my file is filled with false error marks.

What I’ve done so far:

  1. I had Visual Studio Community 2015 already installed;
  2. Installed UE4 10.14 using Epic Launcher;
  3. Followed the [Setting Up Visual Studio for UE4][3] tutorial;
  4. Created a Third Person C++ project for UE4;
  5. I used the UE4 Class Wizzard to create a new Actor class setting the accessibility of my new class to Public;

Am I missing something?

Workarround(?)

I noticed that I can include my “SandPath.h” using the full path from my module path, like:

#include "UnrealSandBottle\Public\SandPath.h"

but I coudn’t find an alternative path for “ProceduralMeshComponent.h”.

Anyway, since my project is already building fine with the code as it is, I would prefer a solution that doesn’t touch the code itself but allowed visual studio to work as expected instead.

I hope someone can help me.
Thank you.

Problem solved by closing and reopening Unreal editor and Visual Studio.