Options

.net core profiling can never find source

Every time I profile a .net core application all the methods are always without source. Any workaround am I doing something wrong?
Tagged:

Best Answer

  • Options
    Alex BAlex B Posts: 1,132 Diamond 4
    Answer ✓
    Hi @ByronP,

    It looks like the issue is due to .NET Core applications using portable PDB files by default which currently do not work in ANTS Performance Profiler.  To get this to work you will need to edit the projects to generate non-portable PDB files. 

    To do this, right-click on the project and choose Properties, then click Build at the left and then the "Advanced" button at the bottom of the page.  In the window that pops up choose the dropdown next to "Debugging information (under the "Output" section) and change this from "Portable" to "PDB-only" or "Full" and then ANTS Performance Profiler will be able to see the source code.


    I hope that helps!

    Kind regards,
    Alex
    Product Support Engineer | Redgate Software

    Have you visited our Help Center?
Sign In or Register to comment.