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); }
public Settings() { Profile = new Profile (); CompilerPaths = new List<string> (); }