![]() |
VOOZH | about |
dotnet add package DoenaSoft.DVDProfiler.Xml --version 6.0.2
NuGet\Install-Package DoenaSoft.DVDProfiler.Xml -Version 6.0.2
<PackageReference Include="DoenaSoft.DVDProfiler.Xml" Version="6.0.2" />
<PackageVersion Include="DoenaSoft.DVDProfiler.Xml" Version="6.0.2" />Directory.Packages.props
<PackageReference Include="DoenaSoft.DVDProfiler.Xml" />Project file
paket add DoenaSoft.DVDProfiler.Xml --version 6.0.2
#r "nuget: DoenaSoft.DVDProfiler.Xml, 6.0.2"
#:package DoenaSoft.DVDProfiler.Xml@6.0.2
#addin nuget:?package=DoenaSoft.DVDProfiler.Xml&version=6.0.2Install as a Cake Addin
#tool nuget:?package=DoenaSoft.DVDProfiler.Xml&version=6.0.2Install as a Cake Tool
A comprehensive .NET library for working with DVD Profiler XML exports.
DVD Profiler is a comprehensive DVD cataloging software application developed by Invelos LLC (https://www.invelos.com). It allows users to catalog their DVD, Blu-ray, and 4K UHD collections with detailed information including cast, crew, technical specifications, and custom data. DVD Profiler can export collection data to XML files, which can be used for backup, sharing, or integration with other applications.
DoenaSoft.DVDProfiler.Xml is a .NET library that provides strongly-typed classes and helper functions for reading, writing, and manipulating DVD Profiler XML export files. This library eliminates the need to manually parse XML files and provides a clean, object-oriented API for working with DVD Profiler data.
Install-Package DoenaSoft.DVDProfiler.Xml
dotnet add package DoenaSoft.DVDProfiler.Xml
Add the following to your .csproj file:
<PackageReference Include="DoenaSoft.DVDProfiler.Xml" Version="6.0.0" />
This library supports the following DVD Profiler XML export versions:
using DoenaSoft.DVDProfiler.DVDProfilerXML.Version400;
using System.Xml.Serialization;
// Deserialize a DVD Profiler XML file
var serializer = new XmlSerializer(typeof(Collection));
using (var reader = new StreamReader("MyCollection.xml"))
{
var collection = (Collection)serializer.Deserialize(reader);
Console.WriteLine($"Total DVDs: {collection.DVDList.Length}");
foreach (var dvd in collection.DVDList)
{
Console.WriteLine($"Title: {dvd.Title}");
Console.WriteLine($"Year: {dvd.ProductionYear}");
Console.WriteLine($"UPC: {dvd.UPC}");
}
}
using DoenaSoft.DVDProfiler.DVDProfilerXML.Version400;
using System.Text;
// Create a new collection
var collection = new Collection();
// Serialize to XML file
collection.Serialize("MyCollection.xml", Encoding.GetEncoding(1252));
using DoenaSoft.DVDProfiler.DVDProfilerXML.Version400;
// Create a new DVD entry
var dvd = new DVD
{
Title = "The Matrix",
ProductionYear = 1999,
UPC = "012345678901",
Edition = "Special Edition",
CollectionNumber = "001",
CollectionType = new CollectionType { IsOwned = true },
GenreList = new[] { "Science Fiction", "Action" }
};
// Add to collection
collection.DVDList = new[] { dvd };
using DoenaSoft.DVDProfiler.DVDProfilerXML.Version400;
var dvd = new DVD
{
Title = "Example Movie",
CastList = new Actor[]
{
new Actor
{
FirstName = "John",
LastName = "Doe",
Role = "Main Character",
BirthYear = 1970
}
},
CrewList = new CrewMember[]
{
new CrewMember
{
FirstName = "Jane",
LastName = "Smith",
CreditType = "Director",
BirthYear = 1965
}
}
};
Each DVD Profiler version has its own namespace:
using DoenaSoft.DVDProfiler.DVDProfilerXML.Version351; // For 3.5.1
using DoenaSoft.DVDProfiler.DVDProfilerXML.Version360; // For 3.6.0
using DoenaSoft.DVDProfiler.DVDProfilerXML.Version380; // For 3.8.0
using DoenaSoft.DVDProfiler.DVDProfilerXML.Version381; // For 3.8.1
using DoenaSoft.DVDProfiler.DVDProfilerXML.Version390; // For 3.9.0
using DoenaSoft.DVDProfiler.DVDProfilerXML.Version400; // For 4.0.0 (Latest)
| Library Version | DVD Profiler Versions Supported |
|---|---|
| 6.0.0 (Current) | 3.5.1, 3.6.0, 3.8.0, 3.8.1, 3.9.0, 4.0.0 |
The library maintains backward compatibility with older DVD Profiler XML formats while supporting the latest schema.
Clone the repository:
git clone https://github.com/DJDoena/DVDProfilerXML.git
cd DVDProfilerXML
Open the solution in Visual Studio or build from command line:
dotnet build
Run tests (if available):
dotnet test
DVDProfilerXML/
|-- 3.5.1/ # DVD Profiler 3.5.1 schema and classes
|-- 3.6.0/ # DVD Profiler 3.6.0 schema and classes
|-- 3.8.0/ # DVD Profiler 3.8.0 schema and classes
|-- 3.8.1/ # DVD Profiler 3.8.1 schema and classes (with COO)
|-- 3.9.0/ # DVD Profiler 3.9.0 schema and classes
|-- 4.0.0/ # DVD Profiler 4.0.0 schema and classes (Latest)
|-- *.cs # Common interfaces and utilities
|-- DVDProfiler.Xml.csproj
Contributions are welcome! If you'd like to contribute to this project:
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License. See the LICENSE file for details.
Copyright (c) Doena Soft. 2010 - 2026
DJ Doena
Doena Soft.
This library is not affiliated with, endorsed by, or connected to Invelos LLC or the DVD Profiler software. DVD Profiler is a trademark of Invelos LLC. This library is an independent tool created to work with DVD Profiler's XML export functionality.
For bug reports, feature requests, or questions, please open an issue on the GitHub repository.
Made with care for the DVD Profiler community
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0-windows7.0 net10.0-windows7.0 is compatible. |
| .NET Framework | net472 net472 is compatible. net48 net48 was computed. net481 net481 was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.