How to MERGE .EXE and .DLL to one executable using ilmerge
I trying to merge to make portable program. but after merger done I run my application and stopped working.. how to fix it..
Code:
c:\Program Files (x86)\Microsoft\ILMerge>ILMerge.exe c:\project\win.exe c:\project\ToggleSwitch.dll c:\project\Bunifu_UI_v1.52.dll /out:C:\project\ar.exe /target:winexe/ndebug /lib:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0"
Re: How to MERGE .EXE and .DLL to one executable using ilmerge
Does it give any errors? Does it start and then crash? What exactly does "stopped working" mean in this case?
Re: How to MERGE .EXE and .DLL to one executable using ilmerge
Quote:
Originally Posted by
PlausiblyDamp
Does it give any errors? Does it start and then crash? What exactly does "stopped working" mean in this case?
I try run myapp.exe after merger then myapp has stopped working (actually not running) .. I don't now why..