From 397740370ffcbec9b716f096cbc5049c0158da20 Mon Sep 17 00:00:00 2001 From: christianwade Date: Fri, 9 Aug 2019 20:51:06 -0700 Subject: [PATCH] Allow connect to Desktop --- BismNormalizer/BismNormalizer/TabularCompare/ConnectionInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BismNormalizer/BismNormalizer/TabularCompare/ConnectionInfo.cs b/BismNormalizer/BismNormalizer/TabularCompare/ConnectionInfo.cs index 2457c1e..eee288c 100644 --- a/BismNormalizer/BismNormalizer/TabularCompare/ConnectionInfo.cs +++ b/BismNormalizer/BismNormalizer/TabularCompare/ConnectionInfo.cs @@ -410,7 +410,7 @@ namespace BismNormalizer.TabularCompare // throw new Microsoft.AnalysisServices.ConnectionException($"Current user {WindowsIdentity.GetCurrent().Name} is not an administrator on the Analysis Server " + this.ServerName); //} - if (amoServer.ServerMode != ServerMode.Tabular) + if (amoServer.ServerMode != ServerMode.Tabular && amoServer.ServerMode != ServerMode.SharePoint) //SharePoint is what Power BI Desktop runs as { throw new ConnectionException($"Analysis Server {this.ServerName} is not running in Tabular mode"); }