BuildConfiguration is inaccessible in 4.19

Change this:

Path.GetFullPath(BuildConfiguration.RelativeEnginePath)

To this;

Path.GetFullPath(Target.RelativeEnginePath)

Where Target is the ReadOnlyTargetRules argument passed into the constructor.

2 Likes