Ejemplo n.º 1
0
 public TweakLib(string exePath, TweakProfile profile) : this(exePath, profile, exePath + ".backup")
 {
 }
Ejemplo n.º 2
0
 public TweakLib(string exePath) : this(exePath, TweakProfile.GetByChecksum(exePath))
 {
 }
Ejemplo n.º 3
0
 public TweakLib(string exePath, TweakProfile profile, string backupPath)
 {
     ExePath      = Path.GetFullPath(exePath);
     BackupPath   = Path.GetFullPath(backupPath);
     this.profile = profile;
 }