[UE5] How to upgrade the project version in a CPP project
.uprojectを右クリックして>その他のオプションを確認>Switch Unreal Engine version …
Right-click on .uproject > Check other options > Switch Unreal Engine version…
モジュールのプロジェクト名は変更しないでください。
"Modules": [
{
"Name": "KPUE532CPP",
KPUE54CPP.uprojectの中身も変更されます。
"EngineAssociation": "5.4",
こんな感じです
変更前
{
"FileVersion": 3,
"EngineAssociation": "5.4",
"Category": "",
"Description": "",
"Modules": [
{
"Name": "KPUE532CPP",
"Type": "Runtime",
"LoadingPhase": "Default"
}
],
"Plugins": [
{
"Name": "ModelingToolsEditorMode",
"Enabled": true,
"TargetAllowList": [
"Editor"
]
}
]
}
変更後
{
"FileVersion": 3,
"EngineAssociation": "5.4",
"Category": "",
"Description": "",
"Modules": [
{
"Name": "KPUE532CPP",
"Type": "Runtime",
"LoadingPhase": "Default"
}
],
"Plugins": [
{
"Name": "ModelingToolsEditorMode",
"Enabled": true,
"TargetAllowList": [
"Editor"
]
}
]
}
内部的に他のファイルもたくさん変更されるようです。