Hi there,
For the initial/fresh building step from source I have a problem regarding building of UAT.
As described in documentation, I call Setup.bat and GenerateProjectFiles.bat scripts as initial steps.
After this step, I want to build Unreal AutomationTool, hence I use the command:
./Engine/Build/BatchFiles/BuildUAT.bat normal force
When I execute the command, I get this error. It seems error might be related with Dotnet
But I after I make a installed build with the command:
./Engine/Build/BatchFiles/RunUAT.bat BuildGraph -script=“Engine/Build/InstalledEngineBuild.xml” -target=“Make Installed Build Win64” -set:HostPlatformOnly=true
I can run this command successfully:
./Engine/Build/BatchFiles/BuildUAT.bat normal force
In this scenerio, only after executing InstalledEngineBuild command I can execute BuildUAT.bat command successfully.
How can I execute BuildUAT.bat command successfully without needing InstalledEngineBuild first?