Unable to connect to Azure Analysis Services via Azure Function App - Could not load type 'System.Security.Principal.WindowsImpersonationContext'
问题 Following this guide, I have created an Azure Function App that compiles and runs: #r "Microsoft.AnalysisServices.Tabular.DLL" #r "Microsoft.AnalysisServices.Core.DLL" #r "System.Configuration" using System; using System.Configuration; using Microsoft.AnalysisServices.Tabular; // req is a value passed from function.json which is currently ignored public static void Run(String req, ILogger log) { log.LogInformation($"C# Timer trigger function started at: {DateTime.Now}"); try { Microsoft