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:
How to do it...
Perform the following steps:
- Create a new console app named ExcelImport.Client using Visual Studio, as shown in the following...