Skip to content

Property pages that show DLL exports & imports

License

Notifications You must be signed in to change notification settings

demberto/DLLTab

Repository files navigation

DLLTab

DLLTab is a Windows property sheet extension which displays the imports and exports of 32/64 bit PE DLLs.

Preview

Installation

Use the installers from the Releases section.

OR

Build from source

NOTE: PeNet, a dependency, uses an incorrect version of System.Runtime.CompilerServices.Unsafe (see this issue).

This can be fixed by installing v4.5.3 of System.Runtime.CompilerServices.Unsafe into the GAC:

  1. Download the Nuget package.

  2. Unzip the .nupkg file.

  3. Go to the lib/net461 directory.

  4. In that directory, open an instance of VS developer CMD/Powershell.

  5. Run:

     gacutil /i System.Runtime.CompilerServices.Unsafe.dll
    

Rest of the build process is super-simple, just build the solution and the installation / registration will be automatically handled in the pre/post build steps.