Skip to content

Instantly share code, notes, and snippets.

@martea
Created August 11, 2020 08:49
Show Gist options
  • Save martea/8ac2aacd4a05efe070695a80aabdd72f to your computer and use it in GitHub Desktop.
Save martea/8ac2aacd4a05efe070695a80aabdd72f to your computer and use it in GitHub Desktop.
Debug assembly location
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