http://blogs.msdn.com/b/performancepoint/archive/2012/09/11/specifying-your-adomd-net-data-provider-version.aspx
导航到 \Program Files\Microsoft Office Servers\15.0\WebServices\PpsMonitoringServer。打开 web.config 文件。它应该与 PerformancePointService.svc 位于同一目录中。在文件的最底部,您应该会看到一个包含在一个块中的块,如下所示:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.AnalysisServices.AdomdClient" publicKeyToken="89845dcd8080cc91" culture="neutral" />
<bindingRedirect oldVersion="9.0.0.0" newVersion="10.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
将元素中的值从 oldVersion="9.0.0.0" 更改为 oldVersion=10.0.0.0" 并从 newVersion="10.0.0.0" 更改为 newVersion="11.0.0.0"。