2024-11-21 20:23:42 +01:00
|
|
|
using System;
|
|
|
|
|
using Duplicati.Library.Crashlog;
|
|
|
|
|
|
2024-05-21 10:22:57 +02:00
|
|
|
namespace Duplicati.CommandLine.SharpAESCrypt.Net8
|
2024-05-21 09:54:01 +02:00
|
|
|
{
|
|
|
|
|
// Wrapper class to keep code independent
|
|
|
|
|
public static class Program
|
|
|
|
|
{
|
2024-11-21 20:23:42 +01:00
|
|
|
public static int Main(string[] args)
|
|
|
|
|
=> CrashlogHelper.WrapWithCrashLog(() =>
|
|
|
|
|
{
|
|
|
|
|
global::SharpAESCrypt.Program.CommandLineMain(args);
|
|
|
|
|
return Environment.ExitCode;
|
|
|
|
|
});
|
2024-05-21 09:54:01 +02:00
|
|
|
}
|
|
|
|
|
}
|