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 22{
33 public class SslCertBinding
44 {
5- public string CertificateThumbprint { get ; set ; }
5+ public string ? CertificateThumbprint { get ; set ; }
66
7- public string ApplicationId { get ; set ; }
7+ public string ? ApplicationId { get ; set ; }
88
99 /// <summary>
1010 /// if mutual TLS is enabled
Original file line number Diff line number Diff line change 1313Console . WriteLine ( "Starting application..." ) ;
1414
1515var builder = WebApplication . CreateBuilder ( args ) ;
16- // builder.Logging.ClearProviders();
17- builder . Logging . SetMinimumLevel ( LogLevel . Debug ) . AddConsole ( ) ;
16+ builder . Logging . ClearProviders ( ) ;
1817
1918// behavioral
2019var mTlsEnabled = bool . TryParse ( builder . Configuration [ "mTLS" ] , out var mTlsEnabledConfig ) && mTlsEnabledConfig ;
You can’t perform that action at this time.
0 commit comments