Example #1
0
        public void Load(Profile other)
        {
            if (other.Name != null)
            {
                Name = other.Name;
            }

            IgnorePaths.AddRange(other.IgnorePaths);
            CompilerExecutable = other.CompilerExecutable;
            CompilerOptions.AddRange(other.CompilerOptions);
            GlobalReplacements.AddRange(other.GlobalReplacements);
            EnumBackingTypeReplacements.AddRange(other.EnumBackingTypeReplacements);
        }