Home All Groups Group Topic Archive Search About

How to embed class library in my app

Author
28 Jun 2005 3:26 PM
Nikolay Petrov
I have a DLL class library, which want to embed in my app.
Referencing it is ok, but I neeed the final product to be only one EXE
file. Possible?

Author
28 Jun 2005 4:19 PM
Herfried K. Wagner [MVP]
"Nikolay Petrov" <johnt***@mail.bg> schrieb:
>I have a DLL class library, which want to embed in my app.
> Referencing it is ok, but I neeed the final product to be only one EXE
> file.

<URL:http://research.microsoft.com/~mbarnett/ilmerge.aspx>
<URL:http://www.gotdotnet.com/community/usersamples/Default.aspx?query=illink>

Applications will still require the .NET Framework, even if some components
used by it are embedded.

--
M S   Herfried K. Wagner
M V P  <URL:http://dotnet.mvps.org/>
V B   <URL:http://classicvb.org/petition/>
Author
28 Jun 2005 5:25 PM
Dragon
Hello Nikolay,

Try ILMerge:
http://www.microsoft.com/downloads/details.aspx?FamilyID=22914587-b4ad-4eae-
87cf-b14ae6a939b0&displaylang=en

I hope this helps

Dragon

Show quoteHide quote
"Nikolay Petrov" <johnt***@mail.bg> ???????/???????? ? ???????? ?????????:
news:1119972371.262945.115700@g43g2000cwa.googlegroups.com...
> I have a DLL class library, which want to embed in my app.
> Referencing it is ok, but I neeed the final product to be only one EXE
> file. Possible?
>
Author
28 Jun 2005 7:58 PM
Nikolay Petrov
Thanks bot of you