You can use sgen.exe to create serialization assemblies ahead of time rather than have them created on the fly.

But how does it decide what types to make serializers for? I've tried to switch to using sgen, but it's been telling me that it can't find any applicable types. Is there an attribute you have to add? Or will I need to manually specify the types?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I'd guess this is because the types weren't public - XML serialisation only works with public types.

link|improve this answer
While true, my types were indeed public. I'm now calling sgen from the command line outside of VS and it seems to be working. I'm not sure what caused the error now. – RandomEngy Jul 19 '11 at 4:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.