I want to profile the CPU usage of a class library project which is compiled into a dll with VS2012.
When I go into Analyze -> Launch Performance Wizard, I can choose which project to profile but it only lets me profile executables, so I can't profile my library.
If I profile both of my projects (one is a very simple Form which runs functions from my library and shows some output) then System.Windows.Forms.Application.Run
takes up 97% of my samples - I don't really care about the performance cost of the form, and it overwhelms everything else.
How can I see the performance data for just my dll?