コード例 #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);
        }