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