25 lines
505 B
C#
25 lines
505 B
C#
using ICSharpCode.SharpZipLib.Zip;
|
|
using Newtonsoft.Json.Linq;
|
|
using SocketTransfer.SDK;
|
|
using System;
|
|
using System.Configuration;
|
|
using System.Data;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.ServiceProcess;
|
|
using System.Text;
|
|
|
|
namespace Unzip
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
ServiceBase[] ServiceToRun;
|
|
ServiceToRun = new ServiceBase[] { new UnzipFileService() };
|
|
ServiceBase.Run(ServiceToRun);
|
|
}
|
|
|
|
}
|
|
}
|