I'm using Delphi XE3, I have many project which contain a rtl unit in DPK file (necessary to set {$SetPEFlags IMAGE_FILE_NET_RUN_FROM_SWAP}
), so their DPK looks like this:
requires
{ ... };
contains
{ ... },
Winapi.Windows;
{$SetPEFlags IMAGE_FILE_NET_RUN_FROM_SWAP}
end.
Recently I added the projects by selecting the DPKs from Windows explorer and using drag-and-drop to add them in a project group, now the project tree of some projects (not all of them) looks like this:
How can I prevent Winapi.Windows.pas
from showing in the project tree?