private void GacUtil()
        {
            GacUtilOptions options = new GacUtilOptions();
            GacUtil u = new GacUtil(options);

            options.Host = Options.Host;
            options.Rows = Options.Rows;
            options.SourceDir = Options.SourceDir;
            options.TextInfoBox = Options.TextInfoBox;

            if (Options.rbGacInstallChecked) options.rbInstallChecked = true;
            else if (Options.rbGacRemoveChecked) options.rbUninstallChecked = true;
            
            u.Go();
        }
예제 #2
0
        private void GacUtil()
        {
            GacUtilOptions options = new GacUtilOptions();
            GacUtil        u       = new GacUtil(options);

            options.Host        = Options.Host;
            options.Rows        = Options.Rows;
            options.SourceDir   = Options.SourceDir;
            options.TextInfoBox = Options.TextInfoBox;

            if (Options.rbGacInstallChecked)
            {
                options.rbInstallChecked = true;
            }
            else if (Options.rbGacRemoveChecked)
            {
                options.rbUninstallChecked = true;
            }

            u.Go();
        }
예제 #3
0
 public GacUtil(GacUtilOptions options)
     : base(options)
 {
 }
예제 #4
0
 public GacUtil(GacUtilOptions options)
     : base(options)
 {
 }