Main.cs 410 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace winsw.dotNET4
  6. {
  7. /// <summary>
  8. /// Just a wrapper class, which redirects the Main entry point to the WinSW main method.
  9. /// </summary>
  10. public class dotNET4Support
  11. {
  12. public static int Main(string[] args)
  13. {
  14. return winsw.WrapperService.Main(args);
  15. }
  16. }
  17. }