Bari.Core.Commands.RebuildCommand.RebuildCommand C# (CSharp) Method

RebuildCommand() public method

public RebuildCommand ( [ cleanCommand, [ buildCommand, [ targetRoot, [ cacheRoot ) : System
cleanCommand [
buildCommand [
targetRoot [
cacheRoot [
return System
        public RebuildCommand([Named("clean")] ICommand cleanCommand, [Named("build")] ICommand buildCommand, [TargetRoot] IFileSystemDirectory targetRoot, [CacheRoot] Lazy<IFileSystemDirectory> cacheRoot)
        {
            this.cleanCommand = cleanCommand;
            this.buildCommand = buildCommand;
            this.targetRoot = targetRoot;
            this.cacheRoot = cacheRoot;
        }
RebuildCommand