Search code examples
visual-studiodllincludereleaseexec

Can I include dll in exe (in Visual Studio)?


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?


Solution

  • 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.