ProjectInstaller.cs 520 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Configuration.Install;
  6. using System.Linq;
  7. namespace MediII.Adapter.MsgToScanServer
  8. {
  9. /// <summary>
  10. ///
  11. /// </summary>
  12. [RunInstaller(true)]
  13. public partial class ProjectInstaller : System.Configuration.Install.Installer
  14. {
  15. /// <summary>
  16. ///
  17. /// </summary>
  18. public ProjectInstaller()
  19. {
  20. InitializeComponent();
  21. }
  22. }
  23. }