public bool CanProcess()
 {
     return(!environmentInformation.GetIsDebugging() &&
            (processManager.GetCurrentProcessDirectory() != TargetDirectory));
 }
Exemplo n.º 2
0
 private bool GetIsCurrentlyRunningFromInstallationFolder()
 {
     return(processManager.GetCurrentProcessDirectory() == TargetDirectory);
 }