Merge DLL into EXE?
Download ilmerge and ilmergre gui . makes joining the files so easy ive used these and works great
Use Costura.Fody.
You just have to install the nuget and then do a build. The final executable will be standalone.
For .NET Framework 4.5
ILMerge.exe /target:winexe /targetplatform:"v4,C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0" /out:finish.exe insert1.exe insert2.dll
ILMerge
- Open CMD and cd to your directory. Let's say:
cd C:\test
- Insert the above code.
/out:finish.exe
replacefinish.exe
with any filename you want.- Behind the
/out:finish.exe
you have to give the files you want to be combined.