https://github.com/demberto/dlltab
Property pages that show DLL exports & imports
https://github.com/demberto/dlltab
csharp dll explorer sharpshell shell-extension windows
Last synced: 2 months ago
JSON representation
Property pages that show DLL exports & imports
- Host: GitHub
- URL: https://github.com/demberto/dlltab
- Owner: demberto
- License: mit
- Created: 2022-05-09T14:21:45.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-20T14:22:12.000Z (over 2 years ago)
- Last Synced: 2025-01-26T09:15:06.396Z (4 months ago)
- Topics: csharp, dll, explorer, sharpshell, shell-extension, windows
- Language: C#
- Homepage:
- Size: 1.2 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DLLTab
DLLTab is a Windows property sheet extension which displays the imports and
exports of 32/64 bit PE DLLs.
## Installation
Use the installers from the [Releases](https://github.com/demberto/DLLTab/releases) section.
*OR*
### Build from source
NOTE: [PeNet](https://github.com/secana/PeNet), a dependency, uses an incorrect
version of `System.Runtime.CompilerServices.Unsafe` (see [this][penet-issue] issue).This can be fixed by installing v4.5.3 of `System.Runtime.CompilerServices.Unsafe`
into the GAC:1. Download the Nuget [package][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.[penet-issue]: https://github.com/secana/PeNet/issues/238
[nuget-package]: https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/4.5.3