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 04c736b commit 7b67fcaCopy full SHA for 7b67fca
src/BenchmarksApps/TLS/Kestrel/Program.cs
@@ -1,3 +1,4 @@
1
+using System.Diagnostics;
2
using System.Net;
3
using System.Net.Security;
4
using System.Security.Cryptography.X509Certificates;
@@ -7,6 +8,18 @@
7
8
9
Console.WriteLine("Starting application...");
10
11
+ProcessStartInfo startInfo = new ProcessStartInfo()
12
+{
13
+ FileName = "/bin/bash",
14
+ Arguments = "openssl version",
15
+ RedirectStandardOutput = true,
16
+ RedirectStandardError = true,
17
+};
18
+Process process = new Process() { StartInfo = startInfo, };
19
+string output = process.StandardOutput.ReadToEnd();
20
+process.WaitForExit();
21
+Console.WriteLine(output);
22
+
23
var builder = WebApplication.CreateBuilder(args);
24
builder.Logging.ClearProviders();
25
0 commit comments