
The environment for .Net Core applications can be determined via environment variables.
.Net Core applications use the “ASPNETCORE_ENVIRONMENT” value for determining the environment profile. This profile is very important and can be used to determine many application settings or for specific error pages and exception handling.
For example; you can…

You can easily convert PKCS#12 pfx files to Base64 strings using the new Windows Terminal.
Windows Terminal includes Powershell Core and the following commands enable you to create the Base64 string of your certificate archive binary.
$fileContentBytes = get-content ‘C:\Certificates\Client.pfx’ -AsByteStream
This command creates a byte array of the binary…