NH Prof Stats

time to read 1 min | 166 words

I am just doing some work on NH Prof, and I run into the line counter button, and I thought it is interesting. Here is the break down of line counts in the application:

  • Appender - 818 lines of code
    The Appender is responsible for communication with the profiled application
  • Backend - 3,548 lines of code
    The Backend is responsible for translating the event stream from the Appender into a coherent idea, apply analysis and send them to the UI.
  • Client - 6,430 lines of code
    The Client is where all the UI work is done, it contains the view model, which is large part of this assembly, reports, user interface work, and other such things that directly relate to what the user is doing with the application. Note that this include things like error reporting, actually executing queries, and other things that are not strictly UI, but are directly related to the way the client works.

This include only C# files, not Xaml files.