public static string RunSomeApplicationWithConsole()
        {
            var cmdLine = new CmdLineRunner();

            // return cmdLine.RunSyncUtilGetOutput(@"svn",@"log --xml", @"E:\ccp_vhdd_main\Professional\App");
            return(cmdLine.RunSyncUtilGetOutput(@"D:\Program Files\7-Zip\7z.exe", @"a E:\Temp\ToDelete\archives\archives.zip E:\Temp\ConsoleApplication4\ "
                                                , @"E:\Temp\ToDelete\archives"));
        }
Example #2
0
 public string DirectRunWithResult(GitWorkspace pGitWorkspace, string pCommandLineParameters)
 {
     return(Runner.RunSyncUtilGetOutput(GitPath, pCommandLineParameters, pGitWorkspace.WorkspacePath));
 }