Developer

Instructions to build from source

Duplicati is an open-source backup software that provides encrypted, incremental backups for files and folders to cloud storage services or local drives - while pre-built binaries are available for all major platforms, you can also build it from source following these instructions.

git clone https://github.com/duplicati/duplicati
dotnet build Duplicati.sln

The build artifacts & executables of other components, such as the Tray Icon, Server, CLI utilities will be located under Executables/net8 directory.

To run the tray icon:

dotnet run Executables/net8/Duplicati.GUI.TrayIcon/Duplicati.GUI.TrayIcon.csproj

Optionally to run all Unit tests:

dotnet test Duplicati.sln 

Last updated

Was this helpful?