XmlTools.Console
0.8.1
See the version list below for details.
dotnet add package XmlTools.Console --version 0.8.1
NuGet\Install-Package XmlTools.Console -Version 0.8.1
<PackageReference Include="XmlTools.Console" Version="0.8.1" />
paket add XmlTools.Console --version 0.8.1
#r "nuget: XmlTools.Console, 0.8.1"
// Install XmlTools.Console as a Cake Addin #addin nuget:?package=XmlTools.Console&version=0.8.1 // Install XmlTools.Console as a Cake Tool #tool nuget:?package=XmlTools.Console&version=0.8.1
XmlTools
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.9.0 | 443 | 11/13/2021 |
0.8.1 | 359 | 4/12/2021 |
0.8.0 | 342 | 4/2/2021 |
0.7.0 | 502 | 4/27/2020 |
0.6.5 | 553 | 3/2/2020 |
0.6.4 | 491 | 3/2/2020 |
0.6.3 | 566 | 3/1/2020 |
0.6.2 | 559 | 9/11/2019 |
0.6.1 | 643 | 3/17/2019 |
0.6.0 | 689 | 12/28/2018 |
0.5.1 | 778 | 9/18/2018 |
0.5.0 | 809 | 9/18/2018 |
0.4.1 | 780 | 8/31/2018 |
0.4.0 | 766 | 8/28/2018 |
0.3.1 | 749 | 8/27/2018 |
0.3.0 | 767 | 8/27/2018 |
0.2.0 | 801 | 8/23/2018 |
## v0.8.1:
- Fixed a bug where the `DecimalCorrector` treated negative values as non-valid decimal values and removed them
## v0.8.0:
- The code generator was updated to now remove XML simple type values that do have elements within them
## v0.7.0:
- Fixed a behavior when extracting the allowed values for an enumeration (a string type with only certain valid values, given as a restriction). Previously, if the parsed type was a derived type, both the values of the base as well as the derived type were considered valid. This has been fixed, so if the derived type specifies restrictions of its own, only those values are used, otherwise the values from the base type are used
## v0.6.5:
- XSD type names with a point `.` are now supported for corrector generation, the point is converted to an underscore `_` when generating a class name
## v0.6.4:
- The decimal corrector now removes decimal elements that have non-numerical content completely
## v0.6.3:
- The decimal corrector now removes decimal values that contain nested nodes, e.g. `123` is removed since `Inner` is not a valid decimal string representation
## v0.6.2:
- The decimal corrector now removes multiple points or commas, e.g. `123..456` is fixed to `123.456`
## v0.6.1:
- The schema corrector now removes elements that are marked as numerical but which have either no value at all or are self-closing in Xml
## v0.6.0:
- The schema corrector now uses `string.Equals()` for case invariant comparisons to reduce the count of object allocations that comes with `.ToUpperInvariant()`
## v0.5.1:
- Configure package description for NuGet packages
## v0.5.0:
- Schema corrector now fixes invalid Xsd decimal types
## v0.4.1:
- Add feature to only flatten groups with specific names
## v0.4.0:
- Add feature to merge multiple schemas
## v0.3.1
- Fix comment style in generated code
## v0.3.0:
- Add feature to repair or remove invalid Xml date elements
## v0.2.0
- Add `GroupFlattener`
## v0.1.2
- Fix bug where attributes could not be corrected when they had wrong casing
## v0.1.1
- Fixes duplicate enumeration values and disables compiler warning about missing Xml comments for the generated class
## v0.1.0
- Initial Release