Hello guys,
I am making a script to automate the building of an unreal project.
Until now, I was calling the RunUAT.bat file with the BuildCookRun mode and it was working flawlessly.
But then I decided to replace the BuildCookRun mode by the BuildEditor one as I only needed to build the editor and not the playable game itself.
And now, every time I call the RunUAT file, I get this error after every action has been build.
Running: C:\Program Files\Epic Games\UE_5.2\Engine\Binaries\ThirdParty\DotNet\6.0.302\windows\dotnet.exe "C:\Program Files\Epic Games\UE_5.2\Engine\Binaries\DotNET\UnrealBuildTool\UnrealBuildTool.dll" UnrealPak Win64 Development -Project={project}.uproject {project}.uproject -NoUBTMakefiles -Manifest={ProjectPath}\Intermediate\Build\Manifest.xml -NoHotReload -log="{User}\AppData\Roaming\Unreal Engine\AutomationTool\Logs\C+Program+Files+Epic+Games+UE_5.2\UBT-UnrealPak-Win64-Development.txt"
Log file: {User}\AppData\Roaming\Unreal Engine\AutomationTool\Logs\C+Program+Files+Epic+Games+UE_5.2\UBT-UnrealPak-Win64-Development.txt
Using 'git status' to determine working set for adaptive non-unity build (D:\autobattlerpreprod).
Couldn't find target rules file for target 'UnrealPak' in rules assembly 'UE5Rules, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null'.
Location: C:\Program Files\Epic Games\UE_5.2\Engine\Intermediate\Build\BuildRules\UE5Rules.dll
Target rules found:
Took 3,1954861s to run dotnet.exe, ExitCode=6
Here is the way I call the RunUAT file
{PathToBatchFiles}/RunUAT.bat BuildEditor -project="../{projectName}.uproject" -clean -nop4 -nodebuginfo -targetplatform=Win64 -build -utf8output
Does anyone know how to fix it ?