ProjectInstaller.cs
上传用户:xuelanruo
上传日期:2015-04-02
资源大小:163k
文件大小:0k
源码类别:

Ftp服务器

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Configuration.Install;
  6. namespace FtpService
  7. {
  8. [RunInstaller(true)]
  9. public partial class ProjectInstaller : Installer
  10. {
  11. public ProjectInstaller()
  12. {
  13. InitializeComponent();
  14. }
  15. }
  16. }