How to get intellisense working in plugins

I’m trying to move some of our more generic codebase into plugin form for easier distribution and maintenance. Moving it over works ok, but once it’s a plugin, Visual Studio’s intellisense doesn’t seem to work properly anymore. I think it can’t find header files or something? It can sort of handle the generic code, FString’s and TArray’s and whatnot, but it can’t seem to find of the code I’ve written.

I feel like there’s something in vs I need to change, but I’ve got no idea what. Any ideas?

i currently use Visual Assist X http://www.wholetomato.com/ . It way faster than Intellisense, it work with this case too.

similar to:

i solved by adding the plugin’s public folder path to include dependencies in project properties :wink:

How to? Where?