mirror of
https://github.com/duplicati/duplicati.git
synced 2026-05-07 07:39:34 -04:00
11 lines
273 B
C#
11 lines
273 B
C#
using System.Runtime.Versioning;
|
|
|
|
namespace Duplicati.WindowsService.Net8
|
|
{
|
|
// Wrapper class to keep code independent
|
|
public static class Program
|
|
{
|
|
public static int Main(string[] args)
|
|
=> Duplicati.WindowsService.Program.Main(args);
|
|
}
|
|
} |