Inventors.Xml.Serialization 0.4.0

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Inventors.Xml.Serialization --version 0.4.0
NuGet\Install-Package Inventors.Xml.Serialization -Version 0.4.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Inventors.Xml.Serialization" Version="0.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Inventors.Xml.Serialization --version 0.4.0
#r "nuget: Inventors.Xml.Serialization, 0.4.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Inventors.Xml.Serialization as a Cake Addin
#addin nuget:?package=Inventors.Xml.Serialization&version=0.4.0

// Install Inventors.Xml.Serialization as a Cake Tool
#tool nuget:?package=Inventors.Xml.Serialization&version=0.4.0

Inventors.Xml

Inventors.Xml combines an optional library (Inventors.Xml.Serialization) and a tool (xsdg.exe) to replace the venerable xsd.exe tool from Microsoft. While this tool is handy for automatically generating XSD schemas from C# classes, it suffers from several drawbacks:

  1. It provides no feature for controlling whether an attribute or element is required,
  2. It provides no feature for including doccumentation elements within the generated XSD Schema, and
  3. It can only be used on the .NET Framework platform; no porting of the tool to .NET platform appears in the work.

These three drawbacks inspired us to write the Inventors.Xml.Serialization library and xsdg.exe tool. The tool is written to document the LabBench Language we are developing for describing neuroscience experiments, but its usefulness is not restricted to this particular XML-based language. Consequently, we have released the tool and library as open source (MIT), hoping others may benefit from our work.

Features

  • Generation of XSD schemas from C# classes.
  • Control of use for attributes and minOccurs for elements with an optional XmlRequiredAttribute from the Intentors.Xml.Serialization library.
  • Useful extension methods for working with XML in the Inventors.Xml.Serialization library
  • Generation of documentation annotations in the XSD schema from Text, Markdown, and HTML documentation files.
  • Generation of a complete set of documentation files for a C# class hierarchy.

Usage

xsdg.exe

The xsdg.exe can generate an XSD Schema for a C# class or a set of documentation file templates (please see the Documentation Files sectoin below). The general format for invoking the xsdg tool is:

xsdg -p [Working Directory] [Configuration File] 

where -p [Working Directory] is optional; if omitted the directory from which the command is invoked is used as the working directory for the tool. The configuration file describes the jobs that the tool should perform. Below is an example that first generates a set of documentation file templates and secondly generates a XSD schema:

<?xml version="1.0" encoding="utf-8" ?>
<xsdg 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="Schema/xsdg.xsd"
    assembly="Inventors.Xml"
    input-path="Inventors.Xml/bin/Debug/net6.0/"
    documentation-path="Inventors.Xml/Documentation/"
    output-path="xsdg/Schema/">
    
    <documentation
        title="Creating Markdown Documentation"
        type="Inventors.Xml.XSDGConfig"
        documentation-file-format="markdown"/>

    <schema
        title="Generating XML Schema"
        type="Inventors.Xml.XSDGConfig"
        include-documentation="true"
        documentation-file-format="markdown"
        documentation-output-format="html"
        encode-data="true"
        encapsulate-character-data="false"/>
</xsdg>

Information on how to configure the tool can be found in the XSD schema (xsdg.xsd) for the XSDG tool. This XSD schema was generated with the tool itself. If a suitable editor such as Visual Studio Code with the Redhat XML extension is used then documentation will be provided by hover over and when code completion is invoked while writing configuration files.

Inventors.Xml.Serialization

The System.Xml.Serialization namespace contains no Attribute that can control whether an attribute or element in the resulting XML schema is required�the Inventors.Xml.Serialization library provides a single attribute (XmlRequiredAttribute) that can be used on properties to control whether the resulting attributes or elements will be marked as required in the generated XML Schema.

The use of this Attribute is optional, and the Inventors.Xml.Serialization library is not required for the xsdg.exe tool to be used on an assembly. If the XmlRequiredAttribute is not used, then xsdg will generate XSD Schemas with the same conventions as the xsd.exe tool.

Besides the XmlRequiredAttribute, the library also contains several extension functions that we find helpful when working with XML data.

Below is an example of how the XmlRequired attribute has been used to control XSD schema generation for the class for the <schema> element above:

public class SchemaJob :
    Job
{
    [XmlAttribute("include-documentation")]
    [XmlRequired(false)]
    public bool IncludeDocumentation { get; set; } = true;

    [XmlAttribute("documentation-file-format")]
    [XmlRequired(false)]
    public DocumentationFormat DocumentationFileFormat { get; set; } = DocumentationFormat.MarkDown;

    [XmlAttribute("documentation-output-format")]
    [XmlRequired(false)]
    public DocumentationFormat DocumentationOutputFormat { get; set; } = DocumentationFormat.Html;

    [XmlAttribute("encode-data")]
    [XmlRequired(false)]
    public bool EncodeData { get; set; } = true;

    [XmlAttribute("encapsulate-character-data")]
    [XmlRequired(false)]    
    public bool EncapsulateCharacterData { get; set; } = false;
}

Please note the title and type attributes comes from its base class Job.

Extension methods

When the Inventors.Xml.Serialization namespace is used, the following extension methods becomes available:

Deserializing XML

Any string can be deserialized with the ToObject<T> extenstion method:

var project = xmlString.ToObject<Project>();
Serializing objects

Any object can be serialized into a string with the ToObject<T> extension method:

var xmlString = project.ToXML();

Documentation Files

The xsdg tool can include documentation from Text, Markdown, or HTML files. Each the xs:documention that will be included for classes and properties comes from one file for each entity. The documentation file for a class has the same name as the class and must be located in a folder structure matching the namespaces of the class. Documentation files for each property within the class have the name of [ClassName].[PropertyNAme] and must be located next to the class documentation file.

Product 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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.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.3.0 151 1/2/2024
0.2.0 94 12/30/2023
0.1.0 85 12/29/2023

Updated with functions for validating XML against an XSD schema