[UE5] "Generate Visual Studio project files" does not fill in "Include Directories" in VS2019

I found intellisense and autocompletion didn’t work in my project files on VS2019, so I generated visual studio project without any error, but the issue is still not solved.
I checked project properties of UE5 and I found that it doesn’t have any include directories related to UE5.0 release in “Include Directories” (in “VC++ Directories”)
I tried creating a totally new project of UE5.0 release but it still has the same issue.
However, I tried it with UE4.25 and UE5.0 EA2 and these version properly fill in Include Directories.

I am having the same issue. This is a major problem which breaks IntelliSense drastically!

Temporary Solution:

For me, I always had the build.cs just add every single directory to the include directories, so if this is what you were doing, this should work for you.

First, install fd-find, then run the following command in PowerShell, in your ProjectName/Source/ProjectName folder:

"$(fd -t d -a)".replace("\ ", ";")

Then paste the output into the “Include Directories” field, like so: