A utility for managing and installing third-party Daz 3D Content. This application helps you keep track of your content library, install new items, and see what you have installed.
- Install Content: Easily install content from compressed archives (
.zip,.7z, etc.). - Content Library: Keeps a database of your installed content for easy management.
- Status Tracking: See which archives have been installed.
- Cross-Platform: Built with Avalonia, allowing it to run on Windows, macOS, and Linux.
This project is built with .NET 9 and Avalonia UI. Key dependencies include:
- .NET 9 - The underlying framework.
- Avalonia - A cross-platform UI framework for .NET.
- ReactiveUI - An MVVM framework for .NET.
- Entity Framework Core (SQLite) - For the local database.
- SharpSevenZip - For handling various archive formats.
Pre-built releases for Windows are available on the Releases page.
-
Download
Go to the Releases section and download the latest.zipfile for your system:DazContentInstaller-win-x64.zipfor most modern Windows PCs (64-bit)DazContentInstaller-win-x86.zipfor older 32-bit Windows systems
-
Extract
Unzip the downloaded file to a folder of your choice. -
Keep files together
Make sure to keep the extracted files always together, as the application executable depends on those few libraries. -
Run
Double-clickDazContentInstaller.exeinside the extracted folder to start the application. No installation is required.
Note:
macOS and Linux users will need to build from source (see the Development section below).
Not all asset archives will work out of the box. Different people use different ways how they package and distribute their assets. The installer is designed to handle the typical Daz 3D content structure—usually, this means an archive containing a Content directory (or similar) with subfolders like data, Runtime, People, etc. Archives following this structure should install easily.
If you encounter an archive that doesn't work as expected, please create an issue so I can take a look and improve compatibility!
To build and run this project from source, you will need the .NET 9 SDK installed.
-
Clone the repository:
git clone https://github.com/TheSeventhCode/daz-content-installer.git cd daz-content-installer -
Restore dependencies:
dotnet restore DazContentInstaller/DazContentInstaller.csproj
-
Run the application:
dotnet run --project DazContentInstaller/DazContentInstaller.csproj
This project is licensed under the GNU General Public License v3.0. See the LICENSE file for details.


