-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve extraction of Application Name #61
Comments
Originalutter
pushed a commit
to Originalutter/RawRabbit
that referenced
this issue
Feb 23, 2016
Originalutter
pushed a commit
to Originalutter/RawRabbit
that referenced
this issue
Feb 23, 2016
Originalutter
pushed a commit
to Originalutter/RawRabbit
that referenced
this issue
Feb 23, 2016
Originalutter
pushed a commit
to Originalutter/RawRabbit
that referenced
this issue
Feb 23, 2016
Originalutter
pushed a commit
to Originalutter/RawRabbit
that referenced
this issue
Feb 25, 2016
Originalutter
pushed a commit
to Originalutter/RawRabbit
that referenced
this issue
Feb 25, 2016
Originalutter
pushed a commit
to Originalutter/RawRabbit
that referenced
this issue
Feb 25, 2016
Originalutter
pushed a commit
to Originalutter/RawRabbit
that referenced
this issue
Mar 1, 2016
Originalutter
pushed a commit
to Originalutter/RawRabbit
that referenced
this issue
Mar 1, 2016
pardahlman
pushed a commit
that referenced
this issue
Mar 1, 2016
Fixing some small things: * Remove unused field * Assign value of _applicationName in ctor * Made iis application name to a field
pardahlman
pushed a commit
that referenced
this issue
Mar 1, 2016
Thanks @Originalutter -- I've made some changes in |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's a private method in
NamingConvention
calledGetApplicationName
. The algorithm today isn't to refined. Scenarios that should be handled:"C:\\Projects\\Temp\\My.Console.App\\bin\\Debug\\RawException.vshost.exe"
(console app)"C:\\Projects\\Temp\\My.Application\\My.Application.Web\\bin"
(hosted in IIS)"C:\\Application\\PRODUCTION\\My.Windows.Service\\2.2.1.916\\"
(windows service, deployed with version number)We expect the Application Name to be MyConsoleApp, MyApplicationWeb and MyWindowsService.
This method could be public and unit tested.
The text was updated successfully, but these errors were encountered: