2

I created a dll that Contain other dlls... I want to merge them. I mean when I want to use the new dll in another project, just import that. not the other contain ones.

for exp: I have a dll that its name is NewDLL and inside it there is another dll names: UsedDLL. now I want to give some one my NewDll and just it. I mean that the 2 DLLs dont be seprate. they merge in one.

I can merge my dll with application like here. but I want to merge dll's with each other

In additional I should say that I dont want to use ILMerge. I want to do that by code...

Elahe
  • 1,379
  • 2
  • 18
  • 34
  • possible duplicate of [Embedding assemblies inside another assembly](http://stackoverflow.com/questions/222655/embedding-assemblies-inside-another-assembly) – Yuval Itzchakov Jul 26 '14 at 09:28
  • @YuvalItzchakov ILMerge didnt work for me. its not for win 8 – Elahe Jul 26 '14 at 10:03

1 Answers1

1

Have a look at this similar question: Running ILMerge tool using .NET 4 on Windows 8 . The suggested solution is to use a tool named GILMA (GUI for ILMerge).

Or have a look at ILMerge-GUI which claims to support .NET 4.5

Community
  • 1
  • 1
Jan Köhler
  • 5,817
  • 5
  • 26
  • 35