Browse Source

Merge branch 'master' into memory-rc1

pull/560/head
Jason Nelson 8 years ago
committed by GitHub
parent
commit
9c5dfeeb0f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      tests/ImageSharp.Tests/Formats/Jpg/Utils/LibJpegTools.cs

11
tests/ImageSharp.Tests/Formats/Jpg/Utils/LibJpegTools.cs

@ -65,7 +65,16 @@ namespace SixLabors.ImageSharp.Tests.Formats.Jpg.Utils
}
string args = $@"""{sourceFile}"" ""{destFile}""";
var process = Process.Start(DumpToolFullPath, args);
var process = new Process
{
StartInfo =
{
FileName = DumpToolFullPath,
Arguments = args,
WindowStyle = ProcessWindowStyle.Hidden
}
};
process.Start();
process.WaitForExit();
}

Loading…
Cancel
Save