1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-06-16 12:57:40 +00:00
community.general/test/integration/targets/win_service/files/Program.cs
2019-02-04 20:29:29 +10:00

16 lines
302 B
C#

using System.ServiceProcess;
namespace SleepService
{
internal static class Program
{
private static void Main(string[] args)
{
ServiceBase.Run(new ServiceBase[1]
{
(ServiceBase) new SleepService(args)
});
}
}
}