示例#1
0
        public static void JekyllServe(this ICakeContext context, JekyllServeSettings settings)
        {
            if (context is null)
            {
                throw new ArgumentNullException(nameof(context));
            }

            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            AddinInformation.LogVersionInformation(context.Log);

            var command = new JekyllServeCommand(context.FileSystem, context.Environment, context.ProcessRunner,
                                                 context.Tools, context.Log);

            command.Serve(settings);
        }
        protected override void RunTool()
        {
            var tool = new JekyllServeCommand(FileSystem, Environment, ProcessRunner, Tools, Log);

            tool.Serve(Settings);
        }