public FormOptions(Options options)
        {
            InitializeComponent();
            this.options = options;

            tbVhosts.Text = options.vhostsPath;
            tbWwwRoot.Text = options.htdocsPath;
            tbHosts.Text = options.hostsPath;
            tbExecBin.Text = options.executeBinPath;
            tbExecParams.Text = options.executeBinParams;
            tbExtra.Text = options.extraHostsEntries;
        }
Exemple #2
0
 public Publisher(Projects projects, Options options)
 {
     this.options = options;
     this.projects = projects;
 }