UniversalDiveDataFormat 1.0.2
dotnet add package UniversalDiveDataFormat --version 1.0.2
NuGet\Install-Package UniversalDiveDataFormat -Version 1.0.2
<PackageReference Include="UniversalDiveDataFormat" Version="1.0.2" />
paket add UniversalDiveDataFormat --version 1.0.2
#r "nuget: UniversalDiveDataFormat, 1.0.2"
// 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
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 | Versions 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. |
-
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.