Reputation: 4753
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.
Upvotes: 8
Views: 2095
Reputation: 11783
Doesn't have to be "9" in the path. probably whichever version you're having. for you (2013) it'll be here:
not sure what the others are.
Having said that, have a look at the above windows utility: everything search. you can type the name of the dll you're looking for, and results are instantaneous :)
Upvotes: 3
Reputation: 18127
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.
Upvotes: 9