How add plugin module rules in game project module rules?

I wrote plugin and trying to build game project with him, but VS show error. Error and my code here.
May be need modify this:

public class VTDFirePanelsTarget : TargetRules
{
	public VTDFirePanelsTarget(TargetInfo Target) : base(Target)
	{
		Type = TargetType.Game;

		ExtraModuleNames.AddRange( new string[] { "VTDFirePanels" } );
	}
}

I try but it is not helping.

All right, now understand!