Click here to Skip to main content
15,888,610 members
Articles / Programming Languages / MSIL
Tip/Trick

ILMerge [dll_portable]

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
1 Jul 2010CPOL 9.7K   1  
Transforming ILMerge.exe to DLL [for convenient usage only]
Transforming ILMerge.exe to DLL [for convenient usage only].

Use:

1. reference->Add [ILMerge_Portable.dll]

2. ...

Imports ILMerge_Portable

Sub Main()

    ' [1]
    Dim args As String() = {"/out:target.dll", "D:\source1.exe", "D:\source2.exe"}
    If Emicrox.Processing(args) Then
    EndIf

    ' [2]
    If Emicrox.Processing("D:\source.exe", "target.dll", False) Then
    EndIf

    ' [3]
    If Emicrox.Processing("D:\source1.exe", "D:\source2.dll", "target.dll", False) Then
    EndIf

End Sub


http://emicrox-net.1gb.ru/source/ILMerge_Portable.dll

INFO: http://emicrox.net

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer PESAP Labs
Russian Federation Russian Federation
.Net Tools

----------------------
PESAP Labs - Homepage
{ http://pesap.com }

Comments and Discussions

 
-- There are no messages in this forum --