I am working on a project which generates an assembly. I just noticed that an additional assembly *.XmlSerializers.dll is being generated. Why this file is auto generated and what it is used for?
|
In .Net implementation, the XmlSerializer generates a temporary assembly for serializing/deserializing your classes (for performance reasons). It can either be generated on the fly (but it takes time every execution), or it can be pregenerated during compilation and saved in this assembly you are asking about. You can change this behaviour in project options. |
|||||||||
|
|
FYI. The exact steps to stop the XmlSerializers.dll from being auto-generated are:
|
|||||
|
|
I think this is the JIT (Just in time) compilation of XML serialisers for performance reasons. You get the same thing with RegEx instances using the RegexOptions.Compiled option turned on. I'm no .NET CLR expert, sorry for lack of precise technical detail. |
|||
|
|
|
See Sgen.exe on MSDN Typically the |
|||
|
|
|
The project only generates the project.XMLSerialisers.dll for web applications. For other applications you have to run sgen separately. |
|||
|
|