Perform the following steps:
- Create a new console application using the .NET Core C# language and create an app setting key named StorageConnectionString with your storage account connection string. You can get the connection string from the Access Keys blade of the storage account, as shown in the following screenshot:

- Install the Configuration and Queue Storage NuGet packages using the following commands:
Install-Package Microsoft.Azure.Storage.Queue Install-Package System.Configuration.ConfigurationManager
- Add the following namespaces:
using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.Queue; ...