How Change the Project Name?

I was able to do it, but it takes a lot of renaming.

You’ll have to change all instances of your project name in the root directory of your project as well as the source folder, and you’ll have to go into each c++ file and change them there too.


So Rename:

MyProject.uproject
MyProject.h
MyProject.cpp
MyProject.target.cs
MyProjectEditor.target.cs
MyProject.build.cs

And you’ll have to change all instances of MYPROJECT_API to MYNEWPROJECT_API

And you’ll have to change all instances of #include “MyProject.h” to #include “MyNewProject.h”

Then you should be able to regenerate VS project files.