08-13-2024, 05:08 PM
I'm afraid its abit complex because DitDev.dll is compiled against native code (eg SlimDX that cannot be ILMerged). The native code is not ILMerged into LitDev.dll, but held in resources to be extracted as required.
Its not a simple fix.
So your options are:
1] To ship a couple dlls with the exe
2] Bundle in a zip, using an installer if you want
3] Try to break and compile specific source code you want into your exe
Frankly, I don't see a reason to not do 1 or 2 unless you are having fun trying to combine everything.
Its not a simple fix.
So your options are:
1] To ship a couple dlls with the exe
2] Bundle in a zip, using an installer if you want
3] Try to break and compile specific source code you want into your exe
Frankly, I don't see a reason to not do 1 or 2 unless you are having fun trying to combine everything.