Changes agreed with Mr. Kolesnik in BWB, ver. 2.12.521

This commit is contained in:
Milan Hanajik 2017-03-30 12:38:50 +02:00
parent 0dd2245fe6
commit dcf6df293f
6 changed files with 147 additions and 179 deletions

View File

@ -37,4 +37,12 @@ namespace TBF.BenchControl.Output.FileWriters
Semicolon,
Count
}
public enum Culture
{
EN,
DE,
SK,
Count
}
}

View File

@ -25,10 +25,10 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
/// Items to print
///
string header;
IList<Results.WMeterRsltItemSpec> commonItems1;
string rootTag;
string testTag;
IList<Results.WMeterRsltItemSpec> commonItems;
IList<Results.WMeterRsltItemSpec> testItems;
IList<Results.WMeterRsltItemSpec> commonItems2;
string footer;
Thread thread1; /// Thread where one file is saved
@ -51,21 +51,12 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
void ApplyConfig()
{
switch (writerCfg.Separator)
{
default:
case Separator.None: separatorStr = string.Empty; break;
case Separator.Space: separatorStr = " "; break;
case Separator.Tabulator: separatorStr = "\t"; break;
case Separator.Comma: separatorStr = ","; break;
case Separator.Semicolon: separatorStr = ";"; break;
}
/// TODO: Apply culture info
rootTag = writerCfg.RootTag;
testTag = writerCfg.RootTag;
header = string.IsNullOrEmpty(writerCfg.Header) ? string.Empty : writerCfg.Header.Replace("~", Environment.NewLine);
commonItems1 = Results.WMeterRsltItemSpec.FromStrArray(writerCfg.CommonItems1);
testItems = Results.WMeterRsltItemSpec.FromStrArray(writerCfg.SelectedItems); /// TestID info will be overwritten later on
commonItems2 = Results.WMeterRsltItemSpec.FromStrArray(writerCfg.CommonItems2);
footer = string.IsNullOrEmpty(writerCfg.Footer) ? string.Empty : writerCfg.Footer.Replace("~", Environment.NewLine);
commonItems = Results.WMeterRsltItemSpec.FromStrArray(writerCfg.CommonItems);
testItems = Results.WMeterRsltItemSpec.FromStrArray(writerCfg.TestItems); /// TestID info will be overwritten later on
}
@ -95,12 +86,12 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
writerCfg.MonthFolders = newCfg.MonthFolders;
writerCfg.DayFolders = newCfg.DayFolders;
writerCfg.FileNameFormat = newCfg.FileNameFormat;
writerCfg.Separator = newCfg.Separator;
writerCfg.CommonItems1 = newCfg.CommonItems1;
writerCfg.SelectedItems = newCfg.SelectedItems;
writerCfg.CommonItems2 = newCfg.CommonItems2;
writerCfg.Culture = newCfg.Culture;
writerCfg.Header = newCfg.Header;
writerCfg.Footer = newCfg.Footer;
writerCfg.RootTag = newCfg.RootTag;
writerCfg.TestTag = newCfg.TestTag;
writerCfg.CommonItems = newCfg.CommonItems;
writerCfg.TestItems = newCfg.TestItems;
ApplyConfig();
}
@ -264,9 +255,10 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
{
/// Header
if (!string.IsNullOrEmpty(writerCfg.Header)) wr.Write(header);
wr.WriteLine(string.Format("<{0}>", rootTag));
/// Common items 1
foreach (var v in commonItems1)
foreach (var v in commonItems)
{
if (abort) return;
@ -285,7 +277,7 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
if ((mtr != null) && (mtr.Publish() == Config.Entities.Publish.Always))
{
wr.WriteLine(" <prueflauf>");
wr.WriteLine(string.Format(" <{0}>", testTag));
for (int i = 0; i < testItems.Count; i++)
{
/// Fetch the item and strip color information
@ -296,26 +288,12 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
/// Print the item
wr.WriteLine(" <{0}>{1}</{0}>", testItems[i].Caption, itemText);
}
wr.WriteLine(" </prueflauf>");
wr.WriteLine(string.Format(" </{0}>", testTag));
}
}
/// Common items 2
foreach (var v in commonItems2)
{
if (abort) return;
/// Fetch the item and strip color information
string itemText = v.Print(wm);
string[] texts = itemText.Split(new char[] { '|' });
if (texts.Length == 2) { itemText = texts[0]; }
wr.WriteLine(" <{0}>{1}</{0}>", v.Caption, itemText);
}
/// Footer
if (abort) return;
if (!string.IsNullOrEmpty(writerCfg.Footer)) wr.Write(footer);
wr.WriteLine(string.Format("</{0}>", rootTag));
}
}
}

View File

@ -20,12 +20,12 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
public MonthFolders MonthFolders;
public DayFolders DayFolders;
public string FileNameFormat;
public Separator Separator;
public Culture Culture;
public string Header;
public string[] CommonItems1;
public string[] SelectedItems;
public string[] CommonItems2;
public string Footer;
public string RootTag;
public string TestTag;
public string[] CommonItems;
public string[] TestItems;
[XmlIgnore]
public Config.Entities.MetersKind MetersKind;
@ -47,23 +47,24 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
DestinationPath2 = string.Empty;
YearFolders = YearFolders.FourDigit;
MonthFolders = MonthFolders.Digit;
DayFolders = DayFolders.Digit;
DayFolders = DayFolders.Digit;
FileNameFormat = "{0:yyMMdd-HHmm}-{2:D2}.xml";
Separator = Separator.None;
Header = string.Empty;
Footer = string.Empty;
Culture = Culture.EN;
Header = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>";
RootTag = "gwzPruefung";
TestTag = "prueflauf";
}
public string ToString(int i)
{
return string.Format("Name={0}, Path={1}, Y={2}, M={3}, D={4}, FNameFmt={5}, Separator={6}",
return string.Format("Name={0}, Path={1}, Y={2}, M={3}, D={4}, FNameFmt={5}, Culture={6}",
Name,
DestinationPath,
YearFolders,
MonthFolders,
DayFolders,
FileNameFormat,
Separator);
Culture);
}
}
}

View File

@ -30,7 +30,7 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
}
string header;
string[] commonItems1;
string[] commonItems;
string[] testItems;
string[] commonItems2;
string footer;
@ -43,21 +43,19 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
private void WriterCfgCtrl_Load(object sender, EventArgs e)
{
for (Separator s = 0; s < Separator.Count; s++) separatorComboBox.Items.Add(s.ToString());
for (Separator s = 0; s < Separator.Count; s++) cultureComboBox.Items.Add(s.ToString());
for (YearFolders s = 0; s < YearFolders.Count; s++) yearFoldersComboBox.Items.Add(s.ToString());
for (MonthFolders s = 0; s < MonthFolders.Count; s++) monthFoldersComboBox.Items.Add(s.ToString());
for (DayFolders s = 0; s < DayFolders.Count; s++) dayFoldersComboBox.Items.Add(s.ToString());
for (int i = 0; i < (int)Separator.Count; i++)
{
separatorComboBox.Items.Add(((Separator)i).ToString());
cultureComboBox.Items.Add(((Separator)i).ToString());
}
header = config.Header;
commonItems1 = config.CommonItems1;
testItems = config.SelectedItems;
commonItems2 = config.CommonItems2;
footer = config.Footer;
commonItems = config.CommonItems;
testItems = config.TestItems;
Redraw();
}
@ -71,12 +69,12 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
monthFoldersLabel.Text = "Month folders";
dayFoldersLabel.Text = "Day folders";
fileNameFmtLabel.Text = "File name format";
separatorLabel.Text = "Separator";
cultureLabel.Text = "Culture";
headerButton.Text = Strings.Header;
commonItemsButton1.Text = "Common items 1";
testItemsButton.Text = "Test items";
commonItemsButton2.Text = "Common items 2";
footerButton.Text = Strings.Footer;
rootTagLabel.Text = "Root tag";
commonItemsButton.Text = "Common items";
rootTagLabel.Text = "Root tag";
testItemsButton.Text = "Test items";
}
public void Closing()
@ -94,7 +92,9 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
monthFoldersComboBox.Text = config.MonthFolders.ToString();
dayFoldersComboBox.Text = config.DayFolders.ToString();
fileNameFmtTextBox.Text = config.FileNameFormat;
separatorComboBox.Text = config.Separator.ToString();
cultureComboBox.Text = config.Culture.ToString();
rootTagTextBox.Text = config.RootTag;
testTagTextBox.Text = config.TestTag;
}
public void Unlock()
@ -108,12 +108,12 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
monthFoldersComboBox.Enabled = true;
dayFoldersComboBox.Enabled = true;
fileNameFmtTextBox.Enabled = true;
separatorComboBox.Enabled = true;
cultureComboBox.Enabled = true;
headerButton.Enabled = true;
commonItemsButton1.Enabled = true;
testItemsButton.Enabled = true;
commonItemsButton2.Enabled = true;
footerButton.Enabled = true;
rootTagTextBox.Enabled = true;
commonItemsButton.Enabled = true;
testTagTextBox.Enabled = true;
testItemsButton.Enabled = true;
}
public CfgUpdateFlags VerifyCfg(ref string message)
@ -138,7 +138,7 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
message += Environment.NewLine + "Invalid day folder selection";
}
if (!separatorComboBox.Items.Contains(separatorComboBox.Text))
if (!cultureComboBox.Items.Contains(cultureComboBox.Text))
{
flags |= CfgUpdateFlags.Error;
message += Environment.NewLine + "Invalid separator";
@ -209,11 +209,11 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
}
for (Separator i = 0; i < Separator.Count; i++)
for (Culture i = 0; i < Culture.Count; i++)
{
if (i.ToString().Equals(separatorComboBox.Text) && (config.Separator != i))
if (i.ToString().Equals(cultureComboBox.Text) && (config.Culture != i))
{
config.Separator = i;
config.Culture = i;
flags |= (CfgUpdateFlags.InvokeCfgChange | CfgUpdateFlags.AnyChange);
break;
}
@ -226,29 +226,18 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
flags |= (CfgUpdateFlags.InvokeCfgChange | CfgUpdateFlags.AnyChange);
}
if (config.CommonItems1 != commonItems1)
if (config.CommonItems != commonItems)
{
config.CommonItems1 = commonItems1;
config.CommonItems = commonItems;
flags |= (CfgUpdateFlags.InvokeCfgChange | CfgUpdateFlags.AnyChange);
}
if (config.SelectedItems != testItems)
if (config.TestItems != testItems)
{
config.SelectedItems = testItems;
config.TestItems = testItems;
flags |= (CfgUpdateFlags.InvokeCfgChange | CfgUpdateFlags.AnyChange);
}
if (config.CommonItems2 != commonItems2)
{
config.CommonItems2 = commonItems2;
flags |= (CfgUpdateFlags.InvokeCfgChange | CfgUpdateFlags.AnyChange);
}
if (config.Footer != footer)
{
config.Footer = footer;
flags |= (CfgUpdateFlags.InvokeCfgChange | CfgUpdateFlags.AnyChange);
}
if ((flags & CfgUpdateFlags.InvokeCfgChange) != 0)
@ -273,12 +262,12 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
}
}
private void commonItemsButton1_Click(object sender, EventArgs e)
private void commonItemsButton_Click(object sender, EventArgs e)
{
Results.Forms.ResultsConfigDlg dlg = new Results.Forms.ResultsConfigDlg()
{
MetersKind = config.MetersKind,
SelectedItems = Results.WMeterRsltItemSpec.FromStrArray(commonItems1),
SelectedItems = Results.WMeterRsltItemSpec.FromStrArray(commonItems),
AvailableItems = new List<Results.WMeterRsltItemSpec>()
};
@ -286,27 +275,10 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
if (dlg.ShowDialog() == DialogResult.OK)
{
commonItems1 = Results.WMeterRsltItemSpec.ToStrArray(dlg.SelectedItems);
commonItems = Results.WMeterRsltItemSpec.ToStrArray(dlg.SelectedItems);
}
}
private void commonItemsButton2_Click(object sender, EventArgs e)
{
Results.Forms.ResultsConfigDlg dlg = new Results.Forms.ResultsConfigDlg()
{
MetersKind = config.MetersKind,
SelectedItems = Results.WMeterRsltItemSpec.FromStrArray(commonItems2),
AvailableItems = new List<Results.WMeterRsltItemSpec>()
};
foreach (var v in Results.WMeterRsltItemSpec.AllItems) dlg.AvailableItems.Add(v);
if (dlg.ShowDialog() == DialogResult.OK)
{
commonItems2 = Results.WMeterRsltItemSpec.ToStrArray(dlg.SelectedItems);
}
}
private void testItemsButton_Click(object sender, EventArgs e)
{
Results.Forms.ResultsConfigDlg dlg = new Results.Forms.ResultsConfigDlg(true)
@ -324,15 +296,6 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
}
}
private void footerButton_Click(object sender, EventArgs e)
{
HeaderFooterDlg dlg = new HeaderFooterDlg(false, string.IsNullOrEmpty(footer) ? string.Empty : footer.Replace("~", Environment.NewLine));
if (dlg.ShowDialog() == DialogResult.OK)
{
footer = dlg.EditedText.Replace(Environment.NewLine, "~");
}
}
#region Configuration Change Handling
public static void OnCmdResponse(object sender, CmdResponseArgs args)

View File

@ -37,8 +37,8 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
this.destinationTextBox = new System.Windows.Forms.TextBox();
this.destinationLabel = new System.Windows.Forms.Label();
this.destinationButton = new System.Windows.Forms.Button();
this.separatorLabel = new System.Windows.Forms.Label();
this.separatorComboBox = new System.Windows.Forms.ComboBox();
this.cultureLabel = new System.Windows.Forms.Label();
this.cultureComboBox = new System.Windows.Forms.ComboBox();
this.testItemsButton = new System.Windows.Forms.Button();
this.yearFoldersLabel = new System.Windows.Forms.Label();
this.monthFoldersLabel = new System.Windows.Forms.Label();
@ -52,9 +52,11 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
this.fileNameFmtTextBox = new System.Windows.Forms.TextBox();
this.fileNameFmtLabel = new System.Windows.Forms.Label();
this.headerButton = new System.Windows.Forms.Button();
this.footerButton = new System.Windows.Forms.Button();
this.commonItemsButton1 = new System.Windows.Forms.Button();
this.commonItemsButton2 = new System.Windows.Forms.Button();
this.commonItemsButton = new System.Windows.Forms.Button();
this.rootTagTextBox = new System.Windows.Forms.TextBox();
this.rootTagLabel = new System.Windows.Forms.Label();
this.testTagLabel = new System.Windows.Forms.Label();
this.testTagTextBox = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// nameTextBox
@ -111,31 +113,31 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
this.destinationButton.UseVisualStyleBackColor = true;
this.destinationButton.Click += new System.EventHandler(this.destinationButton_Click);
//
// separatorLabel
// cultureLabel
//
this.separatorLabel.AutoSize = true;
this.separatorLabel.Location = new System.Drawing.Point(17, 184);
this.separatorLabel.Name = "separatorLabel";
this.separatorLabel.Size = new System.Drawing.Size(53, 13);
this.separatorLabel.TabIndex = 17;
this.separatorLabel.Text = "Separator";
this.cultureLabel.AutoSize = true;
this.cultureLabel.Location = new System.Drawing.Point(17, 184);
this.cultureLabel.Name = "cultureLabel";
this.cultureLabel.Size = new System.Drawing.Size(42, 13);
this.cultureLabel.TabIndex = 17;
this.cultureLabel.Text = "Cullture";
//
// separatorComboBox
// cultureComboBox
//
this.separatorComboBox.Enabled = false;
this.separatorComboBox.FormattingEnabled = true;
this.separatorComboBox.Location = new System.Drawing.Point(108, 181);
this.separatorComboBox.Name = "separatorComboBox";
this.separatorComboBox.Size = new System.Drawing.Size(146, 21);
this.separatorComboBox.TabIndex = 18;
this.cultureComboBox.Enabled = false;
this.cultureComboBox.FormattingEnabled = true;
this.cultureComboBox.Location = new System.Drawing.Point(108, 181);
this.cultureComboBox.Name = "cultureComboBox";
this.cultureComboBox.Size = new System.Drawing.Size(146, 21);
this.cultureComboBox.TabIndex = 18;
//
// testItemsButton
//
this.testItemsButton.Enabled = false;
this.testItemsButton.Location = new System.Drawing.Point(108, 255);
this.testItemsButton.Location = new System.Drawing.Point(108, 294);
this.testItemsButton.Name = "testItemsButton";
this.testItemsButton.Size = new System.Drawing.Size(146, 23);
this.testItemsButton.TabIndex = 21;
this.testItemsButton.TabIndex = 25;
this.testItemsButton.Text = "Test items";
this.testItemsButton.UseVisualStyleBackColor = true;
this.testItemsButton.Click += new System.EventHandler(this.testItemsButton_Click);
@ -241,7 +243,7 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
// headerButton
//
this.headerButton.Enabled = false;
this.headerButton.Location = new System.Drawing.Point(108, 205);
this.headerButton.Location = new System.Drawing.Point(108, 204);
this.headerButton.Name = "headerButton";
this.headerButton.Size = new System.Drawing.Size(146, 23);
this.headerButton.TabIndex = 19;
@ -249,46 +251,60 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
this.headerButton.UseVisualStyleBackColor = true;
this.headerButton.Click += new System.EventHandler(this.headerButton_Click);
//
// footerButton
// commonItemsButton
//
this.footerButton.Enabled = false;
this.footerButton.Location = new System.Drawing.Point(108, 305);
this.footerButton.Name = "footerButton";
this.footerButton.Size = new System.Drawing.Size(146, 23);
this.footerButton.TabIndex = 23;
this.footerButton.Text = "Footer";
this.footerButton.UseVisualStyleBackColor = true;
this.footerButton.Click += new System.EventHandler(this.footerButton_Click);
this.commonItemsButton.Enabled = false;
this.commonItemsButton.Location = new System.Drawing.Point(108, 249);
this.commonItemsButton.Name = "commonItemsButton";
this.commonItemsButton.Size = new System.Drawing.Size(146, 23);
this.commonItemsButton.TabIndex = 22;
this.commonItemsButton.Text = "Common items";
this.commonItemsButton.UseVisualStyleBackColor = true;
this.commonItemsButton.Click += new System.EventHandler(this.commonItemsButton_Click);
//
// commonItemsButton1
// rootTagTextBox
//
this.commonItemsButton1.Enabled = false;
this.commonItemsButton1.Location = new System.Drawing.Point(108, 230);
this.commonItemsButton1.Name = "commonItemsButton1";
this.commonItemsButton1.Size = new System.Drawing.Size(146, 23);
this.commonItemsButton1.TabIndex = 20;
this.commonItemsButton1.Text = "Common items 1";
this.commonItemsButton1.UseVisualStyleBackColor = true;
this.commonItemsButton1.Click += new System.EventHandler(this.commonItemsButton1_Click);
this.rootTagTextBox.Enabled = false;
this.rootTagTextBox.Location = new System.Drawing.Point(108, 228);
this.rootTagTextBox.Name = "rootTagTextBox";
this.rootTagTextBox.Size = new System.Drawing.Size(146, 20);
this.rootTagTextBox.TabIndex = 21;
//
// commonItemsButton2
// rootTagLabel
//
this.commonItemsButton2.Enabled = false;
this.commonItemsButton2.Location = new System.Drawing.Point(108, 280);
this.commonItemsButton2.Name = "commonItemsButton2";
this.commonItemsButton2.Size = new System.Drawing.Size(146, 23);
this.commonItemsButton2.TabIndex = 22;
this.commonItemsButton2.Text = "Common items 2";
this.commonItemsButton2.UseVisualStyleBackColor = true;
this.commonItemsButton2.Click += new System.EventHandler(this.commonItemsButton2_Click);
this.rootTagLabel.AutoSize = true;
this.rootTagLabel.Location = new System.Drawing.Point(17, 231);
this.rootTagLabel.Name = "rootTagLabel";
this.rootTagLabel.Size = new System.Drawing.Size(48, 13);
this.rootTagLabel.TabIndex = 20;
this.rootTagLabel.Text = "Root tag";
//
// testTagLabel
//
this.testTagLabel.AutoSize = true;
this.testTagLabel.Location = new System.Drawing.Point(17, 276);
this.testTagLabel.Name = "testTagLabel";
this.testTagLabel.Size = new System.Drawing.Size(46, 13);
this.testTagLabel.TabIndex = 23;
this.testTagLabel.Text = "Test tag";
//
// testTagTextBox
//
this.testTagTextBox.Enabled = false;
this.testTagTextBox.Location = new System.Drawing.Point(108, 273);
this.testTagTextBox.Name = "testTagTextBox";
this.testTagTextBox.Size = new System.Drawing.Size(146, 20);
this.testTagTextBox.TabIndex = 24;
//
// WriterCfgCtrl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.commonItemsButton2);
this.Controls.Add(this.commonItemsButton1);
this.Controls.Add(this.footerButton);
this.Controls.Add(this.testTagLabel);
this.Controls.Add(this.testTagTextBox);
this.Controls.Add(this.rootTagLabel);
this.Controls.Add(this.rootTagTextBox);
this.Controls.Add(this.commonItemsButton);
this.Controls.Add(this.headerButton);
this.Controls.Add(this.fileNameFmtTextBox);
this.Controls.Add(this.fileNameFmtLabel);
@ -302,8 +318,8 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
this.Controls.Add(this.monthFoldersLabel);
this.Controls.Add(this.yearFoldersLabel);
this.Controls.Add(this.testItemsButton);
this.Controls.Add(this.separatorComboBox);
this.Controls.Add(this.separatorLabel);
this.Controls.Add(this.cultureComboBox);
this.Controls.Add(this.cultureLabel);
this.Controls.Add(this.destinationButton);
this.Controls.Add(this.destinationTextBox);
this.Controls.Add(this.destinationLabel);
@ -326,8 +342,8 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
private System.Windows.Forms.TextBox destinationTextBox;
private System.Windows.Forms.Label destinationLabel;
private System.Windows.Forms.Button destinationButton;
private System.Windows.Forms.Label separatorLabel;
private System.Windows.Forms.ComboBox separatorComboBox;
private System.Windows.Forms.Label cultureLabel;
private System.Windows.Forms.ComboBox cultureComboBox;
private System.Windows.Forms.Button testItemsButton;
private System.Windows.Forms.Label yearFoldersLabel;
private System.Windows.Forms.Label monthFoldersLabel;
@ -340,9 +356,11 @@ namespace TBF.BenchControl.Output.FileWriters.Xml
private System.Windows.Forms.Label destination2Label;
private System.Windows.Forms.TextBox fileNameFmtTextBox;
private System.Windows.Forms.Label fileNameFmtLabel;
private System.Windows.Forms.Button headerButton;
private System.Windows.Forms.Button footerButton;
private System.Windows.Forms.Button commonItemsButton1;
private System.Windows.Forms.Button commonItemsButton2;
private System.Windows.Forms.Button headerButton;
private System.Windows.Forms.Button commonItemsButton;
private System.Windows.Forms.TextBox rootTagTextBox;
private System.Windows.Forms.Label rootTagLabel;
private System.Windows.Forms.Label testTagLabel;
private System.Windows.Forms.TextBox testTagTextBox;
}
}

View File

@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
// Build Number
// Revision
//
[assembly: AssemblyVersion("2.12.520.1")]
[assembly: AssemblyFileVersion("2.12.520.1")]
[assembly: AssemblyVersion("2.12.521.1")]
[assembly: AssemblyFileVersion("2.12.521.1")]