Removed SUM and VCS from exclude list to support VCSummer data

Added status message when merging formats is completed
Added message box when merging formats is completed
This commit is contained in:
Rich 2012-12-04 22:41:55 +00:00
parent 55bb5f8c95
commit 8fd70677fc

View File

@ -350,7 +350,7 @@ namespace fmtxml
{ {
Application.Run(new Form1()); Application.Run(new Form1());
} }
private static string[] _ExcludeList = "ANO,ATA,ATLAS,LPL,MYA,NAE,NAI,NAS,PAC,RBN,SCE,SRS,SUM,VCS,VP,WPF,YAE".Split(",".ToCharArray()); private static string[] _ExcludeList = "ANO,ATA,ATLAS,LPL,MYA,NAE,NAI,NAS,PAC,RBN,SCE,SRS,VP,WPF,YAE".Split(",".ToCharArray());
public static bool Excluded(FileInfo fi) public static bool Excluded(FileInfo fi)
{ {
foreach (string prefix in _ExcludeList) foreach (string prefix in _ExcludeList)
@ -511,7 +511,8 @@ namespace fmtxml
else else
Console.WriteLine("For {0}, page or document file does not exist.", fi.Name); Console.WriteLine("For {0}, page or document file does not exist.", fi.Name);
} }
MyStatus = string.Format("DONE Merging Formats {0:F3} seconds", TimeSpan.FromTicks(DateTime.Now.Ticks - tStart.Ticks).TotalSeconds);
MessageBox.Show("DONE Merging Formats - Results are in " + tbResultPath.Text + @"fmtall'");
} }
private void ClearResults(string path) private void ClearResults(string path)