示例#1
0
        public ModuleBundleBuilder(ModuleInfoManager moduleInfoManager)
        {
            if (moduleInfoManager == null)
            {
                throw new ArgumentNullException("moduleInfoManager");
            }

            this.moduleInfoManager = moduleInfoManager;

            PropertyStringfiers = new List <IModulePropertyStringfier>();
            PropertyStringfiers.Add(DefaultModulePropertyStringfier.Instance);
            PropertyStringfiers.Add(new ModulePropertyStringfier(this));
        }