Created
August 11, 2020 08:49
-
-
Save martea/8ac2aacd4a05efe070695a80aabdd72f to your computer and use it in GitHub Desktop.
Debug assembly location
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void DebugAssmeblies(Assembly[] assemblies) | |
{ | |
foreach (var item in assemblies) | |
{ | |
logger.Log(LogLevel.Debug, item.FullName); | |
logger.Log(LogLevel.Debug, item.CodeBase); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment