Exemplo n.º 1
0
        internal void ApplyInherited(ProjectOptions inherited)
        {
            ViewModelSuffix = inherited.ViewModelSuffix;

            ViewModelLocation.ApplyInherited(inherited.ViewModelLocation);
            ViewLocation.ApplyInherited(inherited.ViewLocation);
        }
Exemplo n.º 2
0
        public bool InheritsFully(ProjectOptions inherited)
        {
            if (ViewModelSuffix != inherited.ViewModelSuffix)
            {
                return(false);
            }

            if (!ViewModelLocation.InheritsFully(inherited.ViewModelLocation))
            {
                return(false);
            }
            if (!ViewLocation.InheritsFully(inherited.ViewLocation))
            {
                return(false);
            }

            return(true);
        }