123456789101112131415161718192021222324 |
-
- using System.ComponentModel;
- using System.Configuration.Install;
- namespace Foghorn.WindowsService
- {
- [RunInstaller(true)]
- public partial class FoghornWindowsServiceInstaller : Installer
- {
- public FoghornWindowsServiceInstaller()
- {
- InitializeComponent();
- }
- }
- }
|