示例#1
0
        internal CakePSHost(ICakeLog log, bool outputToAppConsole)
        {
            if (log == null)
            {
                throw new ArgumentNullException("log");
            }

            _Interface = new CakePSHostInterface(log, outputToAppConsole);
        }
示例#2
0
        internal CakePSHost(ICakeLog log)
        {
            if (log == null)
            {
                throw new ArgumentNullException("log");
            }

            _Interface = new CakePSHostInterface(log);
        }