Skip to content
Snippets Groups Projects
Program.cs 364 B
Newer Older
  • Learn to ignore specific revisions
  • Vaclav Svaton's avatar
    Vaclav Svaton committed
    using System.ServiceProcess;
    
    namespace HaaSMiddleware.MiddlewareService
    {
    	static class Program
    	{
    		/// <summary>
    		/// The main entry point for the application.
    		/// </summary>
    		static void Main()
    		{
    			ServiceBase[] ServicesToRun;
    			ServicesToRun = new ServiceBase[] 
    			{ 
    				new MiddlewareService() 
    			};
    			ServiceBase.Run(ServicesToRun);
    		}
    	}
    }