When I try to add DataSets to any RDLC report within asp.net Project, Visual Studio takes some time (in wich it usually reads all compiled assemblies), and then suddenly crashes. It happens either in VS 2012 and VS 2013.
In some other machines, it does not crash. But does show any elegible class/method to be used as a DataSet source.
Please navigate to C:\Windows\Assembly and locate Microsoft.AnalysisServices.AdomdClient.dll to check the version number. For 2008 R2, it is 10.0.0.0 required. If no 10.0.0.0, install it by download Microsoft® SQL Server® 2008 R2 ADOMD.NET and running Adomd.NET from:
go.microsoft.com/fwlink/?LinkID=188441&clcid=0x409 (X86 Package)
OR
go.microsoft.com/fwlink/?LinkID=188442&clcid=0x409 (X64 Package)
I had the same problem in ASP.NET MVC project but in my case was from one Nuget package reference.
I found some useful information here.
In my case reference that caused the problem was Microsoft.AspNet.SignalR.Core version="2.0.2"
After I update this Nuget package to version="2.2.1"
solve my problem.