private static ProcessStartInfo GetProcessStartInfo()
 {
     return(new ProcessStartInfo
     {
         FileName = ConverterExecutable.Get().FullConverterExecutableFilename,
         RedirectStandardInput = true,
         RedirectStandardOutput = true,
         RedirectStandardError = true,
         UseShellExecute = false,
         CreateNoWindow = true
     });
 }
Exemple #2
0
 private static ProcessStartInfo GetProcessStartInfo()
 {
     return(new ProcessStartInfo
     {
         FileName = ConverterExecutable.Get().FullConverterExecutableFilename,
         RedirectStandardInput = true,
         RedirectStandardOutput = true,
         RedirectStandardError = true,
         UseShellExecute = false,
         CreateNoWindow = true,
         Arguments = TemporaryPdf.TempFilesPath == null ? null : $"\"-TEMPDIR={TemporaryPdf.TempFilesPath}\""
     });
 }