示例#1
0
 public Prototype(string dataFolderPath)
 {
     this.dataFolderPath  = dataFolderPath;
     this.houseFlipperExe = Path.Combine(DirectoryIO.GetProjectDir(), @"..\..\HouseFlipper\bin\debug\HouseFlipper.exe");
     if (!File.Exists(houseFlipperExe))
     {
         throw new InvalidOperationException(string.Format("Error: Path does not exist '{0}'", houseFlipperExe));
     }
 }
示例#2
0
 public Demo()
 {
     this.ExecutablePath = Path.Combine(DirectoryIO.GetProjectDir(), @"..\..\KazmonWatcher\bin\debug\KazmonWatcher.exe");
 }
示例#3
0
 static DataFolderFactory()
 {
     fooPath       = Path.Combine(DirectoryIO.GetProjectDir(), "foo");
     quotedFooPath = "\"" + fooPath + "\"";
     barPath       = Path.Combine(fooPath, "bar.csv");
 }