Michael Ganss

Results 275 comments of Michael Ganss

It's not an order-related issue. The order is already correct, it's just that the second `Secondary` property is dropped. The default order of elements in a sequence is simply the...

There is no mapping mechanism available but you can define your own using the `INamingProvider` interface. It would be ideal if we had a general name mapping mechanism using a...

The latest version sort of fixes this. You'll probably have to set `GenerateInterfaces` to `false`, too. By sort of I mean there are scenarios where it doesn't work but it...

Both `Or` and `And` are (possible) root elements. There can be only one `XmlRootAttribute` on a class. That's why the `Or` class is an empty class that derives from `BinaryLogicOpType`.

I made `And` and `Or` both get their individual classes which derive from `BinaryLogicOpType`. Couldn't make it abstract because there may also be non-root elements which don't get individual classes...

Does using the `--tvpn, --textValuePropertyName` command line argument help (e.g. set to `TextValue`)?

Currently, the file names are identical to the C# namespace names (plus ".cs"). So one way of specifying the file name is to set the C# namespace name. It would...

AFAICT `XmlSerializer` doesn't support `DateTimeOffset`.

Can you provide an example how this would work with DateTimeOffset?

This means we would have to make the type configurable as a string, e.g. `MyTypes.MyDateTimeOffset`. Currently types are handled internally as objects of `Type`, i.e. the type needs to be...