コード例 #1
0
        public void Deploy()
        {
            // need to log inside of reader
            var hosts = _reader.Read();

            var runners = _factory.BuildRunners(hosts);

            runners.Each(x => x.InitializeDeployment());
            runners.Each(x => x.Deploy());
            runners.Each(x => x.FinalizeDeployment());

            // TODO -- write more to the console.
            // TODO --


            WriteToFile(_diagnostics);
        }