The crashlog feature was lost during the removal of the auto-updater. This commit adds it back, in a slightly different way.
11 lines
331 B
C#
11 lines
331 B
C#
using Duplicati.Library.Crashlog;
|
|
|
|
namespace Duplicati.CommandLine.BackendTool.Net8
|
|
{
|
|
// Wrapper class to keep code independent
|
|
public static class Program
|
|
{
|
|
public static int Main(string[] args)
|
|
=> CrashlogHelper.WrapWithCrashLog(() => Duplicati.CommandLine.BackendTool.Program.Main(args));
|
|
}
|
|
} |