.NET Interesting Tools

  • ILMerge is a good utility to just merge some assemblies into one working assembly, it's a console application that you can use directly, and it's provided as a library as well, so you can just write your own custom code, using this library, to merge more than one assembly, the tool considers the first assembly in the list as a primary one and the others are secondary ones, in other means if the first one is an EXE so the target will be EXE, Download ILMerge
  • LibCheck is a tool that simply compares 2 versions of the same assembly, the comparison criteria is based on APIs within both assemblies, Download LibCheck