Files
duplicati/Executables/net8/Duplicati.CommandLine.SharpAESCrypt/Program.cs
T
Kenneth Skovhede 7e479788d7 Added the missing crashlog feature.
The crashlog feature was lost during the removal of the auto-updater.
This commit adds it back, in a slightly different way.
2024-11-21 20:23:42 +01:00

16 lines
436 B
C#

using System;
using Duplicati.Library.Crashlog;
namespace Duplicati.CommandLine.SharpAESCrypt.Net8
{
// Wrapper class to keep code independent
public static class Program
{
public static int Main(string[] args)
=> CrashlogHelper.WrapWithCrashLog(() =>
{
global::SharpAESCrypt.Program.CommandLineMain(args);
return Environment.ExitCode;
});
}
}