public virtual void ConfigureAll(
            Solution.Configuration configuration,
            Target target)
        {
            configuration.Name = Util.ComposeConfigurationName(target);

            // Compose the solution path according to the current target.
            configuration.SolutionPath = "./solutions/" + Util.ComposeSolutionPath(target);

            // Do custom configurations.
            this.CustomConfigure(configuration, target);
        }