Quick Fix: Aurelius Export : please use unit scope names

Please use unit scope names for Delphi units as well (or provide an option that will prefix or not Delphi units)

Today Aurelius is producing such units

uses
SysUtils,
Generics.Collections,
Aurelius.Mapping.Attributes,
Aurelius.Types.Blob,
Aurelius.Types.DynamicProperties,
Aurelius.Types.Nullable,
Aurelius.Types.Proxy,
Aurelius.Criteria.Dictionary;

Can it be extend/modified so that units will produce this :

uses
System.SysUtils,
Generics.Collections,
Aurelius.Mapping.Attributes,
Aurelius.Types.Blob,
Aurelius.Types.DynamicProperties,
Aurelius.Types.Nullable,
Aurelius.Types.Proxy,
Aurelius.Criteria.Dictionary;

Kind regards

Any reason for this? Note that if we follow that approach, we should use System.Generics.Collections, not Generics.Collections.