UE5.1 VS2022 C++ Build Error With MSB3073

Worked for me, thanks a lot

1 Like

If it doesn’t work by deleting only binaries, try to delete Intermediate folder too.
After that I’ve just reopened Visual Studio and everything was fine.

Thank a lot for your answer

1 Like

Thanks a lot. It worked for me too!

1 Like

Thanks a million!!! :melting_face:

1 Like

VVC2X03S%S1@(R%J9DTCXA
Don’t tick it, and every thing is OK!

My fix when I check the version of my project still set to 5.4 then when I tried to change version to source build and clean up all files and folder it worked!

Binaries
DerivedDataCache
Intermediate
Saved

Generate Source files
Open SLN and Rebuild

Also Disable Live Coding

Adding this with UE 5.4:

DefaultBuildSettings = BuildSettingsVersion.V5;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_4;

in both yourprojectEditor.Target.cs and yourproject.Target.cs
worked for me :slight_smile: hope this helps

1 Like

Adding this with UE 5.4:

DefaultBuildSettings = BuildSettingsVersion.V5;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_4;

in both yourprojectEditor.Target.cs and yourproject.Target.cs
worked for me :slight_smile: hope this helps

This fixed it for me. Thank you!