Does ilmerge optimize the output?
Asked Answered
C

2

1

I have a number of DLLs that are merged using the ILMERGE.EXE tool from Microsoft. All the DLLs have 'optimize my code' unchecked.

When trying to debug code in a web application the modules screen (in Visual Studio) shows the dll has been optimized. This obviously causes a problem when trying to debug certain parts of the application.

Is there a way of building a DLL using ILMERGE which does not optimize the code?

Cousin answered 21/1, 2009 at 1:38 Comment(0)
E
2

Add the /copyattrs-Attribute to the ILMERGE command line.

Essy answered 20/11, 2013 at 11:14 Comment(1)
Thank you so much for this answer - you saved us a boatload of time! Basically, we had a ILMERGE being done on a project that was referenced by another project in the solution. We could still 'Step Into' the code for the first project, but we couldn't examine any of the contents of the variables. This /copyattrs made it so that we could! :-)Aarau
P
1

ILMerge has an option to merge PDBs if you use it, you will be able to debug through your code.

See this blog post and discussion on Scott Hanselman's blog

Also see ILMerge Gui for a UI that has this integrated

Phillip answered 21/1, 2009 at 2:14 Comment(2)
However, it doesn't solve the problem. The IL Merge is producing the PDB by default, however some of the methods within it are still being optimized when built on the web application (whilst some are not).Cousin
What happens when you build in debug mode and then merge, if its unmerged are you having any issues debugging?Phillip

© 2022 - 2024 — McMap. All rights reserved.