Michael Ganss

Results 275 comments of Michael Ganss

Support for choices is incomplete, see https://github.com/mganss/XmlSchemaClassGenerator#choice-elements I'd recommend changing the input schema to something like this (just for the purpose of generating classes): ```xsd ```

@michaelplavnik Could this be a duplicate of #475?

Does disabling the UPA check indeed fix your problem? You can disable the UPA check by specifying `-u-`.

The error handling code is pretty rudimentary currently: https://github.com/mganss/XmlSchemaClassGenerator/blob/fc43f079bf6a0140bafc4bf003f43538e6f71623/XmlSchemaClassGenerator/Generator.cs#L361-L370 OTOH expansion of wildcards occurs in a separate, earlier step, i.e. only expanded names get passed to `XmlSchemaSet` and should be...

Thanks for creating the PR. I'm willing to merge. Could you just add a simple test to keep the coverage?

This is currently unsupported. Xsd.exe treats lists of enums as a special case where it generates an enum with `FlagsAtribute` and corresponding enum members that are powers of 2. This...

I think this is due to #413. Sorry for the confusion. This is just a naming issue, not a functional one, right?

Using the following as the whole XSD I'm unable to repro: ```xsd Исключительные права на результат интеллектуальной деятельности Произведение науки, литературы или искусства ``` I suspect that in your XSD...

The error message is a validation error that occurs when compiling the XML schema using [`XmlSchemaSet.Compile()`](https://learn.microsoft.com/en-us/dotnet/api/system.xml.schema.xmlschemaset.compile). Though the error message is pretty cryptic, I think what it means is that...

Have you checked for https://github.com/mganss/HtmlSanitizer/issues/528#issuecomment-1939621500?