partial         void CopyExtraPropertiesToClone(SystemInfo clone, bool includeLocalProperties);
 public SystemInfo Clone(bool includeLocalProperties)
 {
     var c = new SystemInfo
             {
                 Modules = Modules,
                 PackagePathSeparator = PackagePathSeparator,
                 RootUrl = RootUrl,
                 StaticContentRootUrl = StaticContentRootUrl,
                 TimeZoneId = TimeZoneId,
                 UtcOffset = UtcOffset,
                 Version = Version,
             };
     CopyExtraPropertiesToClone(c, includeLocalProperties);
     return c;
 }