Open-source alternative to ILMerge
Перейти к файлу
Francois Valdy c19b3c0060 Fix AppVeyor config 2015-05-25 15:38:19 +02:00
ILRepack Further improve the patching logic 2015-05-24 11:05:54 +03:00
ILRepack.IntegrationTests Patch WPF Toolkit-specific code 2015-05-22 14:11:51 +03:00
ILRepack.Tests Further improve the patching logic 2015-05-24 11:05:54 +03:00
cecil@165db3d938 upgrade cecil 2015-05-04 01:07:54 -04:00
gradle/wrapper Upgraded build chain tools versions 2015-04-27 00:14:52 +02:00
packages/Mono.Posix.2.0.0.0 The lib was needed as well 2014-12-31 11:43:25 +01:00
.gitattributes Added .gitattributes 2013-04-22 17:17:39 +02:00
.gitignore Patch WPF Toolkit-specific code 2015-05-22 14:11:51 +03:00
.gitmodules Add cecil as submodule 2012-10-17 02:06:03 +06:00
.travis.yml Mono CI attempt 2015-05-25 14:33:09 +02:00
CHANGELOG.md Update the changelog 2015-05-18 15:54:23 +03:00
ILRepack.sln Add a more complex WPF scenario 2015-05-15 11:03:35 +03:00
LICENSE Added license file (#24) 2012-12-17 20:41:27 +01:00
README.md Added sponsoring / donation section 2015-04-27 23:09:06 +02:00
appveyor.yml Fix AppVeyor config 2015-05-25 15:38:19 +02:00
build.gradle Mono CI attempt 2015-05-25 14:33:09 +02:00
gradlew Mono CI attempt 2015-05-25 14:33:09 +02:00
gradlew.bat Added .gitattributes 2013-04-22 17:17:39 +02:00

README.md

Build status Join the chat at https://gitter.im/gluck/il-repack

Introduction

ILRepack is meant at replacing ILMerge / Mono.Merge.

The former being closed-source, impossible to customize, slow, resource consuming and many more. The later being deprecated, unsupported, and based on an old version of Mono.Cecil.

Here we're using latest (slightly modified) Cecil sources (0.9), you can find the fork here. Mono.Posix is also required (build only, it gets merged afterwards) for executable bit set on target file.

Downloads

You can grab it using NuGet.

Or if you're old-school (and want to stay like that), this direct link will give you the latest nupkg file, which you can open as a zip file.

Syntax

A console application has been released (can be used as DLL as well), using same syntax as ILMerge:

Syntax: ILRepack.exe [options] /out:<path> <path_to_primary> [<other_assemblies> ...]

  - /help              displays this usage
 - /keyfile:<path>    specifies a keyfile to sign the output assembly
 - /log:<logfile>     enable logging (to a file, if given) (default is disabled)
 - /ver:M.X.Y.Z       target assembly version
 - /union             merges types with identical names into one
 - /ndebug            disables symbol file generation
 - /copyattrs         copy assembly attributes (by default only the primary assembly attributes are copied)
 - /attr:<path>       take assembly attributes from the given assembly file
 - /allowMultiple     when copyattrs is specified, allows multiple attributes (if type allows)
 - /target:kind       specify target assembly kind (library, exe, winexe supported, default is same as first assembly)
 - /targetplatform:P  specify target platform (v1, v1.1, v2, v4 supported)
 - /xmldocs           merges XML documentation as well
 - /lib:<path>        adds the path to the search directories for referenced assemblies (can be specified multiple times)
 - /internalize       sets all types but the ones from the first assembly 'internal'
 - /delaysign         sets the key, but don't sign the assembly
 - /usefullpublickeyforreferences - NOT IMPLEMENTED
 - /align             - NOT IMPLEMENTED
 - /closed            - NOT IMPLEMENTED
 - /allowdup:Type     allows the specified type for being duplicated in input assemblies
 - /allowduplicateresources allows to duplicate resources in output assembly (by default they're ignored)
 - /zeropekind        allows assemblies with Zero PeKind (but obviously only IL will get merged)
 - /wildcards         allows (and resolves) file wildcards (e.g. `*`.dll) in input assemblies
 - /parallel          use as many CPUs as possible to merge the assemblies
 - /pause             pause execution once completed (good for debugging)
 - /verbose           shows more logs
 - /out:<path>        target assembly path, symbol/config/doc files will be written here as well
 - <path_to_primary>  primary assembly, gives the name, version to the merged one
 - <other_assemblies> ...

Note: for compatibility purposes, all options can be specified using '/', '-' or '--' prefix.

How to build

Builds directly from within VS, or using gradle:

git clone --recursive https://github.com/gluck/il-repack.git
cd il-repack
gradlew.bat msbuild

(Mono.Posix 3.5-compatible dependency was grabbed from a non-standard nuget repo, it has been commited to git to avoid the dependency on this repo)

TODO

  • Crash-testing
  • Add remaining features from ILMerge (closed / align)
  • Un-fork Cecil
  • Merge import process & reference fixing

DONE

  • PDBs & MDBs should be merged (Thanks Simon)
  • Fixed internal method overriding public one which isn't allowed in the same assembly (Simon)
  • Attribute merge (/copyattrs)
  • XML documentation merge
  • Clean command line parameter parsing
  • Add usage / version
  • App.config merge
  • Internalizing types (Simon)
  • Delay signing (Simon)
  • Target platform selection (Simon)
  • Automatic internal type renaming

Sponsoring / Donations

If you like this tool and want to express your thanks, you can contribute either time to the project (issue triage or pull-requests) or donate money to the Free Software Foundation.

Donate