FoghornWindowsServiceInstaller.cs 699 B

123456789101112131415161718192021222324
  1. // <copyright file="FoghornWindowsServiceInstaller.cs" company="Confero Ltd.">
  2. //
  3. // Copyright (c) 2011 - 2013 All Right Reserved.
  4. //
  5. // THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
  6. // EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
  7. // OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
  8. //
  9. // </copyright>
  10. using System.ComponentModel;
  11. using System.Configuration.Install;
  12. namespace Foghorn.WindowsService
  13. {
  14. [RunInstaller(true)]
  15. public partial class FoghornWindowsServiceInstaller : Installer
  16. {
  17. public FoghornWindowsServiceInstaller()
  18. {
  19. InitializeComponent();
  20. }
  21. }
  22. }