Dapr: Reading local secrets with .NET 5

Now that Dapr is about to hit version 1.0.0 let me show you how easy is to read secrets with a .NET 5 console application. Create a console application 1dotnet new console -n DaprSecretSample 2cd DaprSecretSample Add a reference to the Dapr.Client library 1dotnet add package Dapr.Client --prerelease Create a Secret...