UniversalDiveDataFormat 1.0.2

dotnet add package UniversalDiveDataFormat --version 1.0.2
NuGet\Install-Package UniversalDiveDataFormat -Version 1.0.2
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="UniversalDiveDataFormat" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add UniversalDiveDataFormat --version 1.0.2
#r "nuget: UniversalDiveDataFormat, 1.0.2"
#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 UniversalDiveDataFormat as a Cake Addin
#addin nuget:?package=UniversalDiveDataFormat&version=1.0.2

// Install UniversalDiveDataFormat as a Cake Tool
#tool nuget:?package=UniversalDiveDataFormat&version=1.0.2

GitHub Workflow Status GitHub Workflow Status Nuget (with prereleases) GitHub top language GitHub FTB

Universal Dive Data Format

This is a C# library for reading and writing the Universal Dive Data Format.

Currently, the library primarily consists of the Models required to deserialize UDDF files using either the built-in XmlSerializer or the custom UddfDeserilizer.

The UddfDeserializer resolves all links within the UDDF file and maps them onto the object graph.

If you use the built-in XmlSerializer, you have to use the LinkResolutionService to resolve these links.

Future versions might include extra services for enforcing constraints and validation.

Usage

The library is available on NuGet.

You can install it using your package manager or with the cli:

dotnet add package UniversalDiveDataFormat
using System.Xml.Serialization;
using UniversalDiveDataFormat.Models;

UniversalDiveDataFormatRoot uddf = _uddfDeserialiser.Deserialise<UniversalDiveDataFormatRoot>(xml);

Contributing

I haven't written an application using this library yet, so it's entirely possible that I've missed things when I was going through the UDDF specification.

If you find a bug or have a feature request, please open an issue or a pull request.

License

This project is licensed under The Unlicense. Do whatever you want with it but don't blame me for the results.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • 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
1.0.2 95 5/6/2024
1.0.1 83 5/6/2024
1.0.0 79 5/6/2024
0.0.1 81 5/6/2024