public static void JekyllVersion(this ICakeContext context, JekyllVersionSettings 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 JekyllVersionCommand(context.FileSystem, context.Environment, context.ProcessRunner,
                                                   context.Tools, context.Log);

            command.Version(settings);
        }
示例#2
0
        protected override void RunTool()
        {
            var tool = new JekyllVersionCommand(FileSystem, Environment, ProcessRunner, Tools, Log);

            tool.Version(Settings);
        }