ProjectInstaller.cs 267 B

12345678910111213
  1. using System.ComponentModel;
  2. namespace FCS.Crawler
  3. {
  4. [RunInstaller(true)]
  5. public partial class ProjectInstaller : System.Configuration.Install.Installer
  6. {
  7. public ProjectInstaller()
  8. {
  9. InitializeComponent();
  10. }
  11. }
  12. }