In this recipe, we will develop a console application that is responsible for uploading an Excel sheet to Blob Storage.
Uploading employee data into Blob Storage
Getting ready
Perform the following prerequisites:
- Install Visual Studio 2017 Version 15.5 or higher.
- Create a storage account and create a blob container with the name Excelimports.
- Create an Excel file with some employee data, as shown in the following screenshot:
![](https://static.packt-cdn.com/products/9781789615265/graphics/assets/2581bea6-d794-4a02-b17d-a48bc84f1325.png)
How to do it...
Perform the following steps:
- Create a new console app named ExcelImport.Client using Visual Studio, as shown in the following...