Click here to Skip to main content
15,892,674 members
Articles / Programming Languages / C# 4.0

Gilma - GUI for the ILMerge Application Revised for .NET 4.0

Rate me:
Please Sign up or sign in to vote.
4.41/5 (15 votes)
13 Feb 2013CPOL1 min read 136.1K   9K   62  
An article on a GUI to Microsoft ILMerge Program
namespace Gilma {
  partial class MainForm {
    /// <summary>
    /// Required designer variable.
    /// </summary>
    private System.ComponentModel.IContainer components = null;

    /// <summary>
    /// Clean up any resources being used.
    /// </summary>
    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    protected override void Dispose(bool disposing) {
      if ( disposing && (components != null) ) {
        components.Dispose();
      }
      base.Dispose(disposing);
    }

    #region Windows Form Designer generated code

    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent() {
      this.components = new System.ComponentModel.Container();
      this.buttonBrowseStrongKeyLocation = new System.Windows.Forms.Button();
      this.openFileDialogKeyFileLocation = new System.Windows.Forms.OpenFileDialog();
      this.labelProgramLocation = new System.Windows.Forms.Label();
      this.textBoxStrongKeyLocation = new System.Windows.Forms.TextBox();
      this.labelOutputFilename = new System.Windows.Forms.Label();
      this.textBoxOutputFilename = new System.Windows.Forms.TextBox();
      this.buttonBrowseOutputFilename = new System.Windows.Forms.Button();
      this.openFileDialogOutputFilename = new System.Windows.Forms.OpenFileDialog();
      this.checkBoxIncludePdb = new System.Windows.Forms.CheckBox();
      this.textBoxPrimaryAssembly = new System.Windows.Forms.TextBox();
      this.buttonBrowsePrimaryAssembly = new System.Windows.Forms.Button();
      this.openFilePrimaryAssembly = new System.Windows.Forms.OpenFileDialog();
      this.listBoxOtherAssembies = new System.Windows.Forms.ListBox();
      this.contextMenuOtherAssemblies = new System.Windows.Forms.ContextMenu();
      this.menuItemOtherAssembliesAdd = new System.Windows.Forms.MenuItem();
      this.menuItemOtherAssembliesRemove = new System.Windows.Forms.MenuItem();
      this.labelOtherAssembies = new System.Windows.Forms.Label();
      this.buttonAddAssemblies = new System.Windows.Forms.Button();
      this.buttonRemoveAssemblies = new System.Windows.Forms.Button();
      this.openFileAddAssemblies = new System.Windows.Forms.OpenFileDialog();
      this.groupBoxFile = new System.Windows.Forms.GroupBox();
      this.buttonLoad = new System.Windows.Forms.Button();
      this.buttonSave = new System.Windows.Forms.Button();
      this.buttonCancel = new System.Windows.Forms.Button();
      this.buttonClear = new System.Windows.Forms.Button();
      this.buttonMerge = new System.Windows.Forms.Button();
      this.groupBoxProperties = new System.Windows.Forms.GroupBox();
      this.comboBoxTargetType = new System.Windows.Forms.ComboBox();
      this.labelTargetType = new System.Windows.Forms.Label();
      this.openFileDialogConfiguration = new System.Windows.Forms.OpenFileDialog();
      this.saveFileDialogConfiguration = new System.Windows.Forms.SaveFileDialog();
      this.label1 = new System.Windows.Forms.Label();
      this.strongKeyCheckBox = new System.Windows.Forms.CheckBox();
      this.m_ErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
      this.zeroPeKindCheckBox = new System.Windows.Forms.CheckBox();
      this.groupBoxFile.SuspendLayout();
      this.groupBoxProperties.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.m_ErrorProvider)).BeginInit();
      this.SuspendLayout();
      // 
      // buttonBrowseStrongKeyLocation
      // 
      this.buttonBrowseStrongKeyLocation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.buttonBrowseStrongKeyLocation.Location = new System.Drawing.Point(657, 275);
      this.buttonBrowseStrongKeyLocation.Name = "buttonBrowseStrongKeyLocation";
      this.buttonBrowseStrongKeyLocation.Size = new System.Drawing.Size(90, 26);
      this.buttonBrowseStrongKeyLocation.TabIndex = 0;
      this.buttonBrowseStrongKeyLocation.Text = "&Browse...";
      this.buttonBrowseStrongKeyLocation.Click += new System.EventHandler(this.buttonBrowseStrongKeyLocation_Click);
      // 
      // openFileDialogKeyFileLocation
      // 
      this.openFileDialogKeyFileLocation.Filter = "Key files (*.snk;*.pfx)|*.snk;*.pfx|All files| *.*";
      this.openFileDialogKeyFileLocation.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialogKeyFileLocation_FileOk);
      // 
      // labelProgramLocation
      // 
      this.labelProgramLocation.Location = new System.Drawing.Point(5, 253);
      this.labelProgramLocation.Name = "labelProgramLocation";
      this.labelProgramLocation.Size = new System.Drawing.Size(268, 19);
      this.labelProgramLocation.TabIndex = 1;
      this.labelProgramLocation.Text = "Strong Key Location:";
      // 
      // textBoxStrongKeyLocation
      // 
      this.textBoxStrongKeyLocation.AllowDrop = true;
      this.textBoxStrongKeyLocation.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.textBoxStrongKeyLocation.Location = new System.Drawing.Point(18, 277);
      this.textBoxStrongKeyLocation.Name = "textBoxStrongKeyLocation";
      this.textBoxStrongKeyLocation.Size = new System.Drawing.Size(610, 22);
      this.textBoxStrongKeyLocation.TabIndex = 2;
      this.textBoxStrongKeyLocation.DragOver += new System.Windows.Forms.DragEventHandler(this.textBoxStrongKeyLocation_DragOver);
      this.textBoxStrongKeyLocation.DragDrop += new System.Windows.Forms.DragEventHandler(this.textBoxStrongKeyLocation_DragDrop);
      // 
      // labelOutputFilename
      // 
      this.labelOutputFilename.Location = new System.Drawing.Point(7, 9);
      this.labelOutputFilename.Name = "labelOutputFilename";
      this.labelOutputFilename.RightToLeft = System.Windows.Forms.RightToLeft.No;
      this.labelOutputFilename.Size = new System.Drawing.Size(268, 18);
      this.labelOutputFilename.TabIndex = 3;
      this.labelOutputFilename.Text = "Output Filename:";
      // 
      // textBoxOutputFilename
      // 
      this.textBoxOutputFilename.AllowDrop = true;
      this.textBoxOutputFilename.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.textBoxOutputFilename.Location = new System.Drawing.Point(10, 30);
      this.textBoxOutputFilename.Name = "textBoxOutputFilename";
      this.textBoxOutputFilename.Size = new System.Drawing.Size(618, 22);
      this.textBoxOutputFilename.TabIndex = 4;
      this.textBoxOutputFilename.DragOver += new System.Windows.Forms.DragEventHandler(this.textBoxOutputFilename_DragOver);
      this.textBoxOutputFilename.DragDrop += new System.Windows.Forms.DragEventHandler(this.textBoxOutputFilename_DragDrop);
      // 
      // buttonBrowseOutputFilename
      // 
      this.buttonBrowseOutputFilename.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.buttonBrowseOutputFilename.Location = new System.Drawing.Point(657, 28);
      this.buttonBrowseOutputFilename.Name = "buttonBrowseOutputFilename";
      this.buttonBrowseOutputFilename.Size = new System.Drawing.Size(90, 27);
      this.buttonBrowseOutputFilename.TabIndex = 5;
      this.buttonBrowseOutputFilename.Text = "&Browse...";
      this.buttonBrowseOutputFilename.Click += new System.EventHandler(this.buttonBrowseOutputFilename_Click);
      // 
      // openFileDialogOutputFilename
      // 
      this.openFileDialogOutputFilename.CheckFileExists = false;
      this.openFileDialogOutputFilename.Filter = "executables and dlls (*.exe;*.dll)|*.exe;*.dll";
      this.openFileDialogOutputFilename.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialogOutputFilename_FileOk);
      // 
      // checkBoxIncludePdb
      // 
      this.checkBoxIncludePdb.Location = new System.Drawing.Point(10, 47);
      this.checkBoxIncludePdb.Name = "checkBoxIncludePdb";
      this.checkBoxIncludePdb.Size = new System.Drawing.Size(124, 27);
      this.checkBoxIncludePdb.TabIndex = 7;
      this.checkBoxIncludePdb.Text = "Inlude pdb file";
      // 
      // textBoxPrimaryAssembly
      // 
      this.textBoxPrimaryAssembly.AllowDrop = true;
      this.textBoxPrimaryAssembly.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.textBoxPrimaryAssembly.Location = new System.Drawing.Point(8, 76);
      this.textBoxPrimaryAssembly.Name = "textBoxPrimaryAssembly";
      this.textBoxPrimaryAssembly.Size = new System.Drawing.Size(620, 22);
      this.textBoxPrimaryAssembly.TabIndex = 9;
      this.textBoxPrimaryAssembly.DragOver += new System.Windows.Forms.DragEventHandler(this.textBoxPrimaryAssembly_DragOver);
      this.textBoxPrimaryAssembly.DragDrop += new System.Windows.Forms.DragEventHandler(this.textBoxPrimaryAssembly_DragDrop);
      // 
      // buttonBrowsePrimaryAssembly
      // 
      this.buttonBrowsePrimaryAssembly.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.buttonBrowsePrimaryAssembly.Location = new System.Drawing.Point(657, 74);
      this.buttonBrowsePrimaryAssembly.Name = "buttonBrowsePrimaryAssembly";
      this.buttonBrowsePrimaryAssembly.Size = new System.Drawing.Size(90, 27);
      this.buttonBrowsePrimaryAssembly.TabIndex = 11;
      this.buttonBrowsePrimaryAssembly.Text = "&Browse...";
      this.buttonBrowsePrimaryAssembly.Click += new System.EventHandler(this.buttonBrowsePrimaryAssembly_Click);
      // 
      // openFilePrimaryAssembly
      // 
      this.openFilePrimaryAssembly.Filter = "executables and dlls (*.exe;*.dll)|*.exe;*.dll";
      this.openFilePrimaryAssembly.FileOk += new System.ComponentModel.CancelEventHandler(this.openFilePrimaryAssembly_FileOk);
      // 
      // listBoxOtherAssembies
      // 
      this.listBoxOtherAssembies.AllowDrop = true;
      this.listBoxOtherAssembies.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.listBoxOtherAssembies.ContextMenu = this.contextMenuOtherAssemblies;
      this.listBoxOtherAssembies.HorizontalScrollbar = true;
      this.listBoxOtherAssembies.ItemHeight = 16;
      this.listBoxOtherAssembies.Location = new System.Drawing.Point(8, 123);
      this.listBoxOtherAssembies.Name = "listBoxOtherAssembies";
      this.listBoxOtherAssembies.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
      this.listBoxOtherAssembies.Size = new System.Drawing.Size(639, 100);
      this.listBoxOtherAssembies.TabIndex = 12;
      this.listBoxOtherAssembies.DragDrop += new System.Windows.Forms.DragEventHandler(this.listBoxOtherAssembies_DragDrop);
      this.listBoxOtherAssembies.DragOver += new System.Windows.Forms.DragEventHandler(this.listBoxOtherAssembies_DragOver);
      // 
      // contextMenuOtherAssemblies
      // 
      this.contextMenuOtherAssemblies.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.menuItemOtherAssembliesAdd,
            this.menuItemOtherAssembliesRemove});
      this.contextMenuOtherAssemblies.Popup += new System.EventHandler(this.contextMenuOtherAssemblies_Popup);
      // 
      // menuItemOtherAssembliesAdd
      // 
      this.menuItemOtherAssembliesAdd.Index = 0;
      this.menuItemOtherAssembliesAdd.Text = "&Add...";
      this.menuItemOtherAssembliesAdd.Click += new System.EventHandler(this.menuItemOtherAssembliesAdd_Click);
      // 
      // menuItemOtherAssembliesRemove
      // 
      this.menuItemOtherAssembliesRemove.Index = 1;
      this.menuItemOtherAssembliesRemove.Text = "&Remove";
      this.menuItemOtherAssembliesRemove.Click += new System.EventHandler(this.menuItemOtherAssembliesRemove_Click);
      // 
      // labelOtherAssembies
      // 
      this.labelOtherAssembies.Location = new System.Drawing.Point(7, 101);
      this.labelOtherAssembies.Name = "labelOtherAssembies";
      this.labelOtherAssembies.Size = new System.Drawing.Size(268, 19);
      this.labelOtherAssembies.TabIndex = 13;
      this.labelOtherAssembies.Text = "Other Assemblies";
      // 
      // buttonAddAssemblies
      // 
      this.buttonAddAssemblies.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.buttonAddAssemblies.Location = new System.Drawing.Point(657, 123);
      this.buttonAddAssemblies.Name = "buttonAddAssemblies";
      this.buttonAddAssemblies.Size = new System.Drawing.Size(90, 26);
      this.buttonAddAssemblies.TabIndex = 14;
      this.buttonAddAssemblies.Text = "&Add...";
      this.buttonAddAssemblies.Click += new System.EventHandler(this.buttonAddAssemblies_Click);
      // 
      // buttonRemoveAssemblies
      // 
      this.buttonRemoveAssemblies.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.buttonRemoveAssemblies.Location = new System.Drawing.Point(657, 164);
      this.buttonRemoveAssemblies.Name = "buttonRemoveAssemblies";
      this.buttonRemoveAssemblies.Size = new System.Drawing.Size(90, 27);
      this.buttonRemoveAssemblies.TabIndex = 15;
      this.buttonRemoveAssemblies.Text = "&Remove";
      this.buttonRemoveAssemblies.Click += new System.EventHandler(this.buttonRemoveAssemblies_Click);
      // 
      // openFileAddAssemblies
      // 
      this.openFileAddAssemblies.Filter = "dll file (*.dll)|*.dll";
      this.openFileAddAssemblies.Multiselect = true;
      this.openFileAddAssemblies.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileAddAssemblies_FileOk);
      // 
      // groupBoxFile
      // 
      this.groupBoxFile.Controls.Add(this.buttonLoad);
      this.groupBoxFile.Controls.Add(this.buttonSave);
      this.groupBoxFile.Location = new System.Drawing.Point(300, 305);
      this.groupBoxFile.Name = "groupBoxFile";
      this.groupBoxFile.Size = new System.Drawing.Size(214, 76);
      this.groupBoxFile.TabIndex = 16;
      this.groupBoxFile.TabStop = false;
      this.groupBoxFile.Text = "Configuration File";
      // 
      // buttonLoad
      // 
      this.buttonLoad.Location = new System.Drawing.Point(19, 28);
      this.buttonLoad.Name = "buttonLoad";
      this.buttonLoad.Size = new System.Drawing.Size(90, 26);
      this.buttonLoad.TabIndex = 1;
      this.buttonLoad.Text = "&Load";
      this.buttonLoad.Click += new System.EventHandler(this.buttonLoad_Click);
      // 
      // buttonSave
      // 
      this.buttonSave.Location = new System.Drawing.Point(115, 28);
      this.buttonSave.Name = "buttonSave";
      this.buttonSave.Size = new System.Drawing.Size(90, 26);
      this.buttonSave.TabIndex = 0;
      this.buttonSave.Text = "&Save";
      this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
      // 
      // buttonCancel
      // 
      this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
      this.buttonCancel.Location = new System.Drawing.Point(572, 351);
      this.buttonCancel.Name = "buttonCancel";
      this.buttonCancel.Size = new System.Drawing.Size(75, 27);
      this.buttonCancel.TabIndex = 19;
      this.buttonCancel.Text = "&Cancel";
      this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
      // 
      // buttonClear
      // 
      this.buttonClear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.buttonClear.Location = new System.Drawing.Point(572, 317);
      this.buttonClear.Name = "buttonClear";
      this.buttonClear.Size = new System.Drawing.Size(75, 27);
      this.buttonClear.TabIndex = 18;
      this.buttonClear.Text = "C&lear";
      this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click);
      // 
      // buttonMerge
      // 
      this.buttonMerge.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
      this.buttonMerge.Location = new System.Drawing.Point(657, 329);
      this.buttonMerge.Name = "buttonMerge";
      this.buttonMerge.Size = new System.Drawing.Size(90, 36);
      this.buttonMerge.TabIndex = 0;
      this.buttonMerge.Text = "&Merge";
      this.buttonMerge.Click += new System.EventHandler(this.buttonMerge_Click);
      // 
      // groupBoxProperties
      // 
      this.groupBoxProperties.Controls.Add(this.zeroPeKindCheckBox);
      this.groupBoxProperties.Controls.Add(this.comboBoxTargetType);
      this.groupBoxProperties.Controls.Add(this.labelTargetType);
      this.groupBoxProperties.Controls.Add(this.checkBoxIncludePdb);
      this.groupBoxProperties.Location = new System.Drawing.Point(8, 305);
      this.groupBoxProperties.Name = "groupBoxProperties";
      this.groupBoxProperties.Size = new System.Drawing.Size(277, 76);
      this.groupBoxProperties.TabIndex = 17;
      this.groupBoxProperties.TabStop = false;
      this.groupBoxProperties.Text = "Properties";
      // 
      // comboBoxTargetType
      // 
      this.comboBoxTargetType.Items.AddRange(new object[] {
            "Dll",
            "Exe",
            "WinExe"});
      this.comboBoxTargetType.Location = new System.Drawing.Point(88, 15);
      this.comboBoxTargetType.Name = "comboBoxTargetType";
      this.comboBoxTargetType.Size = new System.Drawing.Size(145, 24);
      this.comboBoxTargetType.TabIndex = 8;
      this.comboBoxTargetType.SelectedIndexChanged += new System.EventHandler(this.comboBoxTargetType_SelectedIndexChanged);
      // 
      // labelTargetType
      // 
      this.labelTargetType.Location = new System.Drawing.Point(7, 18);
      this.labelTargetType.Name = "labelTargetType";
      this.labelTargetType.Size = new System.Drawing.Size(120, 26);
      this.labelTargetType.TabIndex = 9;
      this.labelTargetType.Text = "&Target type";
      // 
      // openFileDialogConfiguration
      // 
      this.openFileDialogConfiguration.Filter = "Gilma file (*.glm)|*.glm";
      this.openFileDialogConfiguration.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialogConfiguration_FileOk);
      // 
      // saveFileDialogConfiguration
      // 
      this.saveFileDialogConfiguration.Filter = "Gilma file (*.glm)|*.glm";
      this.saveFileDialogConfiguration.FileOk += new System.ComponentModel.CancelEventHandler(this.saveFileDialogConfiguration_FileOk);
      // 
      // label1
      // 
      this.label1.Location = new System.Drawing.Point(7, 55);
      this.label1.Name = "label1";
      this.label1.Size = new System.Drawing.Size(268, 18);
      this.label1.TabIndex = 21;
      this.label1.Text = "Primary Assembly:";
      // 
      // strongKeyCheckBox
      // 
      this.strongKeyCheckBox.AutoSize = true;
      this.strongKeyCheckBox.Checked = true;
      this.strongKeyCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
      this.strongKeyCheckBox.Location = new System.Drawing.Point(8, 229);
      this.strongKeyCheckBox.Name = "strongKeyCheckBox";
      this.strongKeyCheckBox.Size = new System.Drawing.Size(129, 21);
      this.strongKeyCheckBox.TabIndex = 23;
      this.strongKeyCheckBox.Text = "Use Strong Key";
      this.strongKeyCheckBox.UseVisualStyleBackColor = true;
      this.strongKeyCheckBox.CheckedChanged += new System.EventHandler(this.strongKeyCheckBox_CheckedChanged);
      // 
      // m_ErrorProvider
      // 
      this.m_ErrorProvider.ContainerControl = this;
      // 
      // zeroPeKindCheckBox
      // 
      this.zeroPeKindCheckBox.AutoSize = true;
      this.zeroPeKindCheckBox.Location = new System.Drawing.Point(128, 50);
      this.zeroPeKindCheckBox.Name = "zeroPeKindCheckBox";
      this.zeroPeKindCheckBox.Size = new System.Drawing.Size(139, 21);
      this.zeroPeKindCheckBox.TabIndex = 24;
      this.zeroPeKindCheckBox.Text = "Allow zeroPeKind";
      this.zeroPeKindCheckBox.UseVisualStyleBackColor = true;
      // 
      // MainForm
      // 
      this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
      this.CausesValidation = false;
      this.ClientSize = new System.Drawing.Size(762, 390);
      this.Controls.Add(this.strongKeyCheckBox);
      this.Controls.Add(this.buttonCancel);
      this.Controls.Add(this.buttonClear);
      this.Controls.Add(this.groupBoxProperties);
      this.Controls.Add(this.groupBoxFile);
      this.Controls.Add(this.buttonRemoveAssemblies);
      this.Controls.Add(this.buttonAddAssemblies);
      this.Controls.Add(this.labelOtherAssembies);
      this.Controls.Add(this.listBoxOtherAssembies);
      this.Controls.Add(this.buttonBrowsePrimaryAssembly);
      this.Controls.Add(this.textBoxPrimaryAssembly);
      this.Controls.Add(this.textBoxOutputFilename);
      this.Controls.Add(this.textBoxStrongKeyLocation);
      this.Controls.Add(this.buttonBrowseOutputFilename);
      this.Controls.Add(this.labelOutputFilename);
      this.Controls.Add(this.labelProgramLocation);
      this.Controls.Add(this.buttonBrowseStrongKeyLocation);
      this.Controls.Add(this.buttonMerge);
      this.Controls.Add(this.label1);
      this.Name = "MainForm";
      this.Text = "Gilma - GUI for the ILMerge Application";
      this.groupBoxFile.ResumeLayout(false);
      this.groupBoxProperties.ResumeLayout(false);
      this.groupBoxProperties.PerformLayout();
      ((System.ComponentModel.ISupportInitialize)(this.m_ErrorProvider)).EndInit();
      this.ResumeLayout(false);
      this.PerformLayout();

    }

    #endregion

    private System.Windows.Forms.OpenFileDialog openFileDialogKeyFileLocation;
    private System.Windows.Forms.Label labelProgramLocation;
    private System.Windows.Forms.TextBox textBoxStrongKeyLocation;
    private System.Windows.Forms.Label labelOutputFilename;
    private System.Windows.Forms.TextBox textBoxOutputFilename;
    private System.Windows.Forms.Button buttonBrowseOutputFilename;
    private System.Windows.Forms.OpenFileDialog openFileDialogOutputFilename;
    private System.Windows.Forms.CheckBox checkBoxIncludePdb;
    private System.Windows.Forms.TextBox textBoxPrimaryAssembly;
    private System.Windows.Forms.OpenFileDialog openFilePrimaryAssembly;
    private System.Windows.Forms.ListBox listBoxOtherAssembies;
    private System.Windows.Forms.Label labelOtherAssembies;
    private System.Windows.Forms.Button buttonAddAssemblies;
    private System.Windows.Forms.Button buttonRemoveAssemblies;
    private System.Windows.Forms.OpenFileDialog openFileAddAssemblies;
    private System.Windows.Forms.Button buttonSave;
    private System.Windows.Forms.Button buttonLoad;
    private System.Windows.Forms.Button buttonMerge;
    private System.Windows.Forms.GroupBox groupBoxFile;
    private System.Windows.Forms.GroupBox groupBoxProperties;
    private System.Windows.Forms.Button buttonBrowsePrimaryAssembly;
    private System.Windows.Forms.OpenFileDialog openFileDialogConfiguration;
    private System.Windows.Forms.SaveFileDialog saveFileDialogConfiguration;
    private System.Windows.Forms.Button buttonClear;
    private System.Windows.Forms.Button buttonCancel;
    private System.Windows.Forms.Label label1;
    private System.Windows.Forms.ContextMenu contextMenuOtherAssemblies;
    private System.Windows.Forms.MenuItem menuItemOtherAssembliesAdd;
    private System.Windows.Forms.MenuItem menuItemOtherAssembliesRemove;
    private System.Windows.Forms.ComboBox comboBoxTargetType;
    private System.Windows.Forms.Label labelTargetType;
    private System.Windows.Forms.CheckBox strongKeyCheckBox;
    private System.Windows.Forms.Button buttonBrowseStrongKeyLocation;
    private System.Windows.Forms.ErrorProvider m_ErrorProvider;
    private System.Windows.Forms.CheckBox zeroPeKindCheckBox;
  }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions