Ejemplo n.º 1
0
 /// <summary>
 /// Constructs a pipe engine.
 /// </summary>
 public Engine(string caller)
 {
     Caller     = caller;
     AssyPath   = typeof(Engine).Assembly.Location;
     AssyFolder = System.IO.Path.GetDirectoryName(AssyPath);
     CmdSpecs   = new CommandSpecs();
     LoadCoreFilters();
     Configure();      // <-- Cannot "Log.Write()" prior to this point!
     CmdSpecs.Sort();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Constructs a pipe engine.
 /// </summary>
 public Engine(string caller)
 {
     Caller = caller;
      AssyPath = typeof(Engine).Assembly.Location;
      AssyFolder = System.IO.Path.GetDirectoryName(AssyPath);
      CmdSpecs = new CommandSpecs();
      LoadCoreFilters();
      Configure();         // <-- Cannot "Log.Write()" prior to this point!
      CmdSpecs.Sort();
 }