Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ Usage
-------

``` powershell
AsemblyHasher.exe SomeLibrary.dll
AsemblyHasher.exe SomeApp.exe
AssemblyHasher.exe SomeLibrary.dll
AssemblyHasher.exe SomeApp.exe

# ignore AssemblVersion and AssemblyFileVersion
AsemblyHasher.exe --ignore-versions SomeLibrary.dll
AssemblyHasher.exe --ignore-versions SomeLibrary.dll

# hash multiple files at once
AsemblyHasher.exe SomeLibrary.dll Another.dll A3rdone.dll
AssemblyHasher.exe SomeLibrary.dll Another.dll A3rdone.dll

# other files (not *.dll|exe) content gets hashed too
AsemblyHasher.exe SomeLibrary.dll Picture.jpeg REAME.md
AssemblyHasher.exe SomeLibrary.dll Picture.jpeg REAME.md
```

The output is a hash (using [MurMur-128](http://en.wikipedia.org/wiki/MurmurHash)) of assembly contents (source code + embedded resources, which are extracted using an embedded copy of ildasm.exe).
Expand Down