File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 2
2
{
3
3
public class SslCertBinding
4
4
{
5
- public string CertificateThumbprint { get ; set ; }
5
+ public string ? CertificateThumbprint { get ; set ; }
6
6
7
- public string ApplicationId { get ; set ; }
7
+ public string ? ApplicationId { get ; set ; }
8
8
9
9
/// <summary>
10
10
/// if mutual TLS is enabled
Original file line number Diff line number Diff line change 13
13
Console . WriteLine ( "Starting application..." ) ;
14
14
15
15
var builder = WebApplication . CreateBuilder ( args ) ;
16
- // builder.Logging.ClearProviders();
17
- builder . Logging . SetMinimumLevel ( LogLevel . Debug ) . AddConsole ( ) ;
16
+ builder . Logging . ClearProviders ( ) ;
18
17
19
18
// behavioral
20
19
var mTlsEnabled = bool . TryParse ( builder . Configuration [ "mTLS" ] , out var mTlsEnabledConfig ) && mTlsEnabledConfig ;
You can’t perform that action at this time.
0 commit comments