We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54a2def commit c32ea5bCopy full SHA for c32ea5b
src/BenchmarksApps/TLS/Kestrel/Program.cs
@@ -54,6 +54,7 @@ void ConfigureListen(KestrelServerOptions serverOptions, IConfigurationRoot conf
54
serverOptions.Listen(endpoint, listenOptions =>
55
{
56
var certificatePath = Path.Combine("certificates", $"testCert-{certPublicKeyLength}.pfx");
57
+ Console.WriteLine($"Using certificate: {certificatePath}");
58
59
// [SuppressMessage("Microsoft.Security", "CSCAN0220.DefaultPasswordContexts", Justification="Benchmark code, not a secret")]
60
listenOptions.UseHttps(certificatePath, "testPassword", options =>
0 commit comments