We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8765f4e commit 4506c30Copy full SHA for 4506c30
src/BenchmarksApps/TLS/Kestrel/Program.cs
@@ -8,16 +8,6 @@
8
9
Console.WriteLine("Starting application...");
10
11
-ProcessStartInfo processInfo = new ProcessStartInfo("/bin/bash", "openssl version")
12
-{
13
- RedirectStandardOutput = true,
14
- RedirectStandardError = true,
15
-};
16
-using Process process = Process.Start(processInfo)!;
17
-string output = process.StandardOutput.ReadToEnd();
18
-process.WaitForExit();
19
-Console.WriteLine(output);
20
-
21
var builder = WebApplication.CreateBuilder(args);
22
builder.Logging.ClearProviders();
23
0 commit comments