Building my plugin UE5.6 first time and I m getting this error: error C3533: a parameter cannot have a type that contains 'auto'

Hey there,

Can you please try adding the following to your .Target file?

DefaultBuildSettings = BuildSettingsVersion.V5;

For posterity I’ve been able to add AdditionalCompilerArguments (/Zc:char8_t- specifically) and have seen them be propagated all the way through to my module’s merged response files (*.rsp).

Julian