VS2015 includes some new tools for diagnosing WPF applications performance. My solution contains more than one project (e.g. View and ViewModel projects). When I start my View project in diagnose mode and measure CPU usage, a considerable portion of it is being utilized by the VM project, which is shown as "External Code" in the results. How can I tell diagnostic tools to include all projects of my solution when diagnosing.
Edit
(Note for the people who skip comments)
I know about the "External Code" checkbox available in "Filter View" dropdown. The problem with that option is that if I turn it on, it starts showing lower-level Framework functions in the call stack too (things like nt.dll, presentationcore.dll etc), which means that a function of my VM may get buried 20 levels deep into the call hierarchy. I need a way to ask it to filter any Framework-level functions and just show code from the current solution.