C2018-009 logic to pass the PROMS version number down to the iTechSharp

C2018-004 Close the DebugMeta.txt file after printing
C2018-004 Added class for generate a DebugMeta file.
This commit is contained in:
2018-04-12 20:29:31 +00:00
parent aa7a427dd1
commit 6732591fc5
3 changed files with 22 additions and 1 deletions

View File

@@ -144,4 +144,21 @@ namespace Volian.Base.Library
public static bool IsOpen
{ get { return _MyDebugPrint.IsOpen; } }
}
// C2018-004 create meta file for baseline compares
public static class BaselineMetaFile
{
private static DebugPrint _MyDebugPrint = new DebugPrint();
public static void Open(string fileName)
{ _MyDebugPrint.Open(fileName); }
public static void Close()
{ _MyDebugPrint.Close(); }
public static void Write(string format, params object[] args)
{ _MyDebugPrint.Write(format, args); }
public static void WriteLine(string format, params object[] args)
{ _MyDebugPrint.WriteLine(format, args); }
public static void Show()
{ _MyDebugPrint.Show(); }
public static bool IsOpen
{ get { return _MyDebugPrint.IsOpen; } }
}
}