Esempio n. 1
0
        private static void BuildInstaller(string workingPath, string installerType, string configuration)
        {
            Installer          installerBuilder = new Installer(workingPath, installerType, Installer.GetPackageLabel(workingPath), configuration);
            CommandLineBuilder cmdBuilder       = new CommandLineBuilder(installerBuilder, workingPath);

            // Add the builder to the list so that we can monitor it's progress
            _processes.Push(cmdBuilder);
            cmdBuilder.Execute();
        }