Where is the Microsoft.VisualStudio.Profiler.dll?

c#, visual-studio-2013

Solution

Your build must reference the Microsoft.VisualStudio.Profiler.dll library, located in the Microsoft Visual Studio 9\Team Tools\Performance Tools directory.

This is from msdn documentation. Obviously if you have version higher than 9 you will look into that version.

Problem

I'm trying to use the profiler in visual studio to find the bottleneck in my application. I want to test 1 method in particular so, I was following this guide : http://msdn.microsoft.com/en-us/library/bb514149.aspx But I got stuck on this part... ``` using Microsoft.VisualStudio.Profiler; ``` According to the MSDN page, this namespace is part of the Microsoft.VisualStudio.Profiler.dll, but I can't find this dll when I tried to add a reference to my project.

Original source