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.
|
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.
|
||
|
|
|
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. |
||
|
|
|
|
Include them as embedded. You can then extract them at run-time. |
||
|
|
|
|
For example, add x.dll to the project and set its Build Action to Embedded Resource. To extract:
|
|||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
You can use a tool like boxedapp or thinstall... |
||
|
|