Esempio n. 1
0
        /// <summary>
        /// 移除忽略目标.
        /// </summary>
        /// <param name="iIgnoreTarget">忽略目标.</param>
        public void RemoveIgnoreTarget(string iIgnoreTarget)
        {
            BundleResource target = this.GetMatchTarget(iIgnoreTarget);

            if (null != target)
            {
                target.RemoveIgnoreTarget(iIgnoreTarget);
            }
            else
            {
                this.Error("RemoveIgnoreTarget():No match target for ignore!!(Ignore Target:{0})",
                           iIgnoreTarget);
            }
        }