little-library-54601
02/25/2022, 4:32 PMnew AzureNative.Web.Inputs.HostNameSslStateArgs
{
HostType = "Standard",
Name = "<http://my-app-service.azurewebsites.net|my-app-service.azurewebsites.net>",
SslState = "Disabled",
},
when it should be:
new AzureNative.Web.Inputs.HostNameSslStateArgs
{
HostType = HostType.Standard,
Name = "<http://my-app-service.azurewebsites.net|my-app-service.azurewebsites.net>",
SslState = SslState.Disabled,
},
As it stands, the generated code won't compile. If there's a better place to report this (again, assuming it hasn't been), lmk.echoing-dinner-19531
02/25/2022, 4:33 PMlittle-library-54601
02/25/2022, 4:50 PM