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 4506c30 commit b53e58bCopy full SHA for b53e58b
src/BenchmarksApps/TLS/Kestrel/Program.cs
@@ -8,6 +8,25 @@
8
9
Console.WriteLine("Starting application...");
10
11
+using var process = new Process()
12
+{
13
+ StartInfo =
14
+ {
15
+ FileName = "/usr/bin/env",
16
+ Arguments = "openssl version",
17
+ RedirectStandardOutput = true,
18
+ RedirectStandardError = true,
19
+ UseShellExecute = false,
20
+ CreateNoWindow = true,
21
+ },
22
+ EnableRaisingEvents = true,
23
+};
24
+
25
+process.Start();
26
+process.WaitForExit();
27
+string output = process.StandardOutput.ReadToEnd();
28
+Console.WriteLine("In app openssl version: \n" + output + "\n\n");
29
30
var builder = WebApplication.CreateBuilder(args);
31
builder.Logging.ClearProviders();
32
0 commit comments