Is it possible to add the reference for ExcelDataReader
and ExcelDataset
in Azure functions? I uploaded dll file of NuGet packages (exceldatareader.3.4.0.nupkg
) to the program. But I'm not sure how actually it has to be used. Can anyone help me to achieve this.
#r "Microsoft.WindowsAzure.Storage"
#r "System.IO"
#r "System.Data"
#r "exceldatareader" //*I'm not able to add this reference|*
using System;
using System.IO;
using System.Net;
using System.Runtime.Serialization.Formatters.Binary;
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Blob;
using Microsoft.WindowsAzure.Storage.Auth;
using ExcelDataReader;
using System.Data;
Thank you.