I have a DLL in Prod across dozens of programs. There is a method that is failing and writing to our event log with a non-specific error. We have a fix for the issue, but that would require a new DLL version and deploying to all of our applications that use that DLL. Additionally, it would require weeks of testing.
Searching source code has been unsuccessful so far because the method has a common name. How can I find the one program calling the method failing in the DLL?
Any input is much appreciated.
If you're searching the source code and failing because the name is common, it sounds like you're doing a full-text search. If you are using Visual Studio, do the following:
If you have multiple solutions, you'll need to repeat once for each solution.