Ejemplo n.º 1
0
        public static bool CleanAfterBuild(this BounceCommand command)
        {
            switch (command)
            {
            case BounceCommand.Build:
                return(true);

            case BounceCommand.BuildAndClean:
            case BounceCommand.Clean:
                return(false);

            default:
                throw new ConfigurationException(String.Format("no such command {0}, try build or clean", command));
            }
        }
Ejemplo n.º 2
0
        public static void InvokeCommand(this BounceCommand command, Action build, Action clean)
        {
            switch (command)
            {
            case BounceCommand.Build:
            case BounceCommand.BuildAndClean:
                build();
                break;

            case BounceCommand.Clean:
                clean();
                break;

            default:
                throw new ConfigurationException(String.Format("no such command {0}, try build or clean", command));
            }
        }