ProjectInstaller.cs 283 B

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