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)); } }
public Demo() { this.ExecutablePath = Path.Combine(DirectoryIO.GetProjectDir(), @"..\..\KazmonWatcher\bin\debug\KazmonWatcher.exe"); }
static DataFolderFactory() { fooPath = Path.Combine(DirectoryIO.GetProjectDir(), "foo"); quotedFooPath = "\"" + fooPath + "\""; barPath = Path.Combine(fooPath, "bar.csv"); }