Hello again!
Thanks for the updates, now we have ruled out a few factors. We know that the issue is not coming from the engine install, or the SDK status. The new log you added shows a different problem, related to the MagickNET component:
error NU1903: Warning As Error: Package 'Magick.NET-Q16-HDRI-AnyCPU' 14.7.0 has a known high severity vulnerability
error NU1902: Warning As Error: Package 'Magick.NET-Q16-HDRI-AnyCPU' 14.7.0 has a known moderate severity vulnerability
error NU1901: Warning As Error: Package 'Magick.NET-Q16-HDRI-AnyCPU' 14.7.0 has a known low severity vulnerability
This is a failure related to NuGet dependency warnings being treated as errors during the AutomationTool build step. The package is returning multiple warnings, that would usually be ignored, but since UE’s build system is configured with “TreatWarningsAsErrors”, the whole process is collapsing.
In order to fix the issue, you should either update the NuGet components, or bypass its security check, following the steps below:
-
In “Engine/Source/Programs/AutomationTool” and “Gauntlet”, open the .csproj files and update “Magick.NET-Q16-HDRI-AnyCPU” to its latest version. After that, run “dotnet restore”, then rebuild.
-
In the same .csproj files, set the following:
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
This will prevent the build from failing on vulnerability warnings. You can find more details regarding this process in the thread below:
Additionally, please clear your project’s cache via the following steps:
-
Close Visual Studio and UE Editor completely
-
Delete these folders from your project:
Binaries/
Intermediate/
Saved/
-
Right-click your .uproject file > “Generate Visual Studio project files”
-
Once completed, please try building again