Is there any way to precompile an MSIL file and then have the .net linker link that into a .net assembly at compile time?
So, for example. I have a project. I compile it, decompile it to MSIL, and tweak the msil.
Now then, I'd like to compile and link that tweaked msil file into another project.
Yes, I +COULD+ recompile it as a seperate assembly and just reference it, but in this particular case, i can't do that. The contents of the MSIL needs to be actually in the target assembly.
Any ideas if this is even possible? So far, I've had no luck finding anything.
-- EDIT-- One suggestion is ILMerge, which might work. I'll grabbing the latest copy now and will see how that fairs. The only issue I have with that is that in the past, I've found debugging to be difficult after the merge (or at the very least, more difficult than if I didn't use ILmerge). I was hoping to possibly tweak the proj file to include the compiled MSIL directly as part of the build process, so everything would continue to be easily debugged in the IDE.
-- EDIT -- Well, doesn't look like ILMerge will work for this scenario First, I got this message: An exception occurred during merging: (TaskId:32) ILMerge.Merge: The assembly 'Blah' is not marked as containing only managed code. (TaskId:32) (Consider using the /zeroPeKind option -- but read the documentation first!) (TaskId:32) at ILMerging.ILMerge.Merge() (TaskId:32) at ILMerging.ILMerge.Main(String[] args) (TaskId:32)
Ok. So, what the heck, I add the /zeropekind and try again.
No error!
But, in this particular case, the DLL being merged in has several functions tweaked in the MSIL to be exported as CDECL functions. In the merged dll, they are no longer exported.
Rats.
Back to square one.