Hey, how can i fix this?
Hello there @user_e90240210e5af4fa72047ea4569ac32606c077fed089100fd38d4d !
From your screenshot, you are getting multiple errors tied to “Package was restored using .NETFramework v4.x instead of the project target framework net8.0. This package may not be fully compatible with your project”.
Meaning, there are packs trying to use .NET4, but the project is targetting .NET8, which is expected, as .NET8 is required for UE work. In order to fix this, I would try restoring the NuGet packs at Project > Manage NuGet Packages.
After that, please clear your project’s cache, via navigating to it’s main directory, and deleting folders .vs, Intermediate, Binaries, and DerivedDataCache. Then, right click your .uproject file and select “Generate Visual Studio Project Files”, and allow your project to rebuild.
