vote up 2 vote down star
2

To run my App I need

AxInterop.WMPLib.dll and Interop.WMPLib.dll

that are located in Debug and Release folder

is there any way to include those dlls into exe? so my app is available in one file only.

flag

Even though this is possible I don't really like it. The point of shared libraries is that they are shared between programs. What about downloading them when your program discovers they are not already installed? – Ctrl Alt D-1337 Jan 25 at 2:07

6 Answers

vote up 10 vote down check

As long as your DLLs are .NET assemblies, then ILMerge should be able to combine your exe and all of its dependencies into a single file.

link|flag
vote up 0 vote down

Include them as embedded. You can then extract them at run-time.

link|flag
vote up -1 vote down

For example, add x.dll to the project and set its Build Action to Embedded Resource.

To extract:

 string AppPath=Assembly.GetExecutingAssembly().Location;
 Assembly ThisAssembly=Assembly.LoadFrom(AppPath);
 System.IO.Stream fs=ThisAssembly.GetManifestResourceStream("yourproectname.x.dll");
 int ssize=(int)fs.Length;
 byte [] buf=new byte[ssize];
 fs.Read(buf,0,ssize);
 fs.Close();
link|flag
The first two lines are an unnecessary complication of "Assembly thisAssembly =Assembly.GetExecutingAssembly();". Then there is this line missing at the end: "Assembly.Load(buf);". Finally, this is a horrible solution because you can then access the loaded assembly through reflection only. – wcoenen Jan 25 at 2:23
vote up 0 vote down

Yes, I left out the code to write the file out...

FileStream so=new FileStream("c:\\wherever\\x.dll",FileMode.Create);

so.Write(buf,0,ssize);

so.Close();

No extra utilities required.

link|flag
vote up 0 vote down

when following the directions in you post (cookre), I get the error message:

-The name "Assembly" does not exists in the current context.-

Am I missing something?

thanks in advance.

link|flag
vote up 0 vote down

You can use a tool like boxedapp or thinstall...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.