Live data from Hacker News

Show HN: Free Windows shell extension for quick .NET assembly inspection

github.com

1–2 of 2 posts

Show HN: Free Windows shell extension for quick .NET assembly inspection

#1
Updated an old CodePlex tool (2008) that adds "Assembly Information" to Windows Explorer's right-click menu for DLLs/EXEs.

Shows: Compilation mode (Debug/Release), target framework, PE architecture, dependency tree (clickable).

Implementation: Uses MetadataLoadContext instead of Assembly.Load, so it reads metadata without executing code. Works across all .NET versions (Framework 2.0 through .NET 8+). C++ ATL/COM shell extension for Explorer integration.

Safe for inspecting untrusted assemblies since it never loads them into the runtime.

History: Originally by rockrotem & Ashutosh Bhawasinka (2008-2012, CodePlex), migrated to GitHub by Jozef Izso (2014).

Handy when you're debugging dependency issues or stuck in DLL hell.

Show HN: Free Windows shell extension for quick .NET assembly inspection
github.com