Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 899 Bytes

File metadata and controls

26 lines (18 loc) · 899 Bytes
description Instructions to build from source

Developer

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