> Quick question, I have an application which has an exe, couple of dlls
> and a config file. Is there any way possible to have all in exe file
> to run? I mean, I would like to only one exe at the client side. Is it
> possible?
ILMerge
Arne
As Arne indicated, you can use ILMerge, or you can even take it one step
further and store the various assemblies as compressed resources and extract
/ load them into the appDomain:
http://www.eggheadcafe.com/tutorials/aspnet/04aa7525-f153-4907-b0e8-10ac501f430a
/obfuscation-and-packaging.aspx
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short Urls & more: http://ittyurl.net
> Quick question, I have an application which has an exe, couple of dlls
> and a config file. Is there any way possible to have all in exe file
> to run? I mean, I would like to only one exe at the client side. Is it
> possible?
>
> Thanks.
CSharper - 21 Mar 2008 15:39 GMT
On Mar 14, 6:22 pm, Peter Bromberg [C# MVP]
<pbromb...@yahoo.NoSpamMaam.com> wrote:
> As Arne indicated, you can use ILMerge, or you can even take it one step
> further and store the various assemblies as compressed resources and extract
[quoted text clipped - 14 lines]
>
> - Show quoted text -
Thanks both for the answer.