1234567891011121314151617181920212223 |
- using System.ComponentModel;
- namespace FCS.Crawler
- {
- [RunInstaller(true)]
- public partial class ProjectInstaller : System.Configuration.Install.Installer
- {
- public ProjectInstaller()
- {
- InitializeComponent();
- }
- private void serviceInstaller1_AfterInstall(object sender, System.Configuration.Install.InstallEventArgs e)
- {
- }
- private void serviceProcessInstaller1_AfterInstall(object sender, System.Configuration.Install.InstallEventArgs e)
- {
- }
- }
- }
|