XmlTools 0.6.3
See the version list below for details.
dotnet add package XmlTools --version 0.6.3
NuGet\Install-Package XmlTools -Version 0.6.3
<PackageReference Include="XmlTools" Version="0.6.3" />
paket add XmlTools --version 0.6.3
#r "nuget: XmlTools, 0.6.3"
// Install XmlTools as a Cake Addin #addin nuget:?package=XmlTools&version=0.6.3 // Install XmlTools as a Cake Tool #tool nuget:?package=XmlTools&version=0.6.3
XmlTools - www.dangl-it.com
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 is compatible. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETCoreApp 2.0
- No dependencies.
-
.NETFramework 4.6.1
- 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 | 974 | 11/13/2021 |
0.8.1 | 354 | 4/12/2021 |
0.8.0 | 314 | 4/2/2021 |
0.7.0 | 500 | 4/27/2020 |
0.6.5 | 535 | 3/2/2020 |
0.6.4 | 459 | 3/2/2020 |
0.6.3 | 533 | 3/1/2020 |
0.6.2 | 565 | 9/11/2019 |
0.6.1 | 601 | 3/17/2019 |
0.6.0 | 661 | 12/28/2018 |
0.5.1 | 766 | 9/18/2018 |
0.5.0 | 764 | 9/18/2018 |
0.4.1 | 786 | 8/31/2018 |
0.4.0 | 760 | 8/28/2018 |
0.3.1 | 795 | 8/27/2018 |
0.3.0 | 763 | 8/27/2018 |
0.2.0 | 785 | 8/23/2018 |
0.1.2 | 1,010 | 1/10/2018 |
0.1.1 | 1,150 | 4/8/2017 |
0.1.0 | 1,114 | 4/7/2017 |
## v0.6.3:
- The decimal corrector now removes decimal values that contain nested nodes, e.g. `<Outer><Inner>123</Inner></Outer>` 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