How to get the Project Version for use in blueprints?

Too long didn’t watch?:

FString ProjectVersion;
GConfig->GetString(
    TEXT("/Script/EngineSettings.GeneralProjectSettings"),
    TEXT("ProjectVersion"),
    ProjectVersion,
    GGameIni
    );
return ProjectVersion;
2 Likes