XML serialization without csc.exe

I am having a problem with some of the .net controls that I created that I want to use in Internet Explorer while Protected Mode is on. I get all kinds of security tips related to csc.exe that try to dynamically generate serialized types. In any case, my question is, is there a .NET library there that would allow me to serialize objects without running this csc.exe executable?

thank

+3
source share
1 answer

You can try using the sgen tool ( XML Serializer Generator ). This will allow you to precompile assemblies so that they do not need to be created at run time.

+1

All Articles