24 lines
485 B
C#
24 lines
485 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Configuration.Install;
|
|
using System.Linq;
|
|
|
|
namespace SocketService
|
|
{
|
|
[RunInstaller(true)]
|
|
public partial class ProjectInstaller : Installer
|
|
{
|
|
public ProjectInstaller()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void ServiceProcessInstaller_AfterInstall(object sender, InstallEventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|