5

I'm trying to work through some examples working with Analysis Services Management Objects (AMO), specifically some of this content:

https://technet.microsoft.com/en-us/library/ms345093.aspx

These reference some objects in the Microsoft.AnalysisServices namespace which it says resides in the Microsoft.AnalysisServices.dll, but I can't find it in either the framework or extension references. I found an unclear reference to c:\Program Files\Microsoft Sql Server\<version>\sdk\assemblies but it's not there either.

Can anyone direct me to where I can find this assembly and/or how to download/install it?

Xedni
  • 3,662
  • 2
  • 16
  • 27

2 Answers2

4

I found it here:

C:\Program Files (x86)\Microsoft SQL Server\120\SDK\Assemblies

This is from a 2014 developer install. If its not there you have to rerun setup and choose Analysis Services.

benjamin moskovits
  • 5,261
  • 1
  • 12
  • 22
2

You can also install it from NuGet.

Run the following command in the Package Manager Console:

install-package Microsoft.AnalysisServices
Kobus Smit
  • 1,775
  • 2
  • 18
  • 30
  • There is a warning for this NuGet package - `The owner has unlisted this package. This could mean that the package is deprecated or shouldn't be used anymore.` – RBT Jun 30 '17 at 10:57
  • `Install-Package Microsoft.AnalysisServices.Server` seems like a newer option. – RBT Jun 30 '17 at 11:06