Possible addition for the migration feature to support C++?

Is it possible to make the migration feature also support C++ parented blueprints because i believe its possible to do so.

The migration feature works nicely for me when using it with blueprints and if i transfer the correct files in the correct order saves me plenty of time. I’ve struggled a bit with C++ parented Blueprints, my current solution is

  • go to “DefaultEngine.ini” and just paste at the bottom

[CoreRedirects]
+PackageRedirects=(OldName="/Script/ProjectName",NewName="/Script/BoltArena")

For clarification ProjectName is the old project and BoltArena is the new Project

  • Then move the CPP files to the new project
  • In the projects Source Folder find-replace case-sensitive: “ProjectName” to “BoltArena” and allcaps-sensitive: “PROJECTNAME_API” to “BOLTARENA_API”
  • then right click .uproject > Generate Visual Studio Project Files

maybe its possible to add this process when migrating files so CPP files dont break?

since migration feature knows the names of the 2 projects it could automate this process.

its my first time writing on a forum so if there’s any adjustments needed for discussion ill gladly adjust