2025-03-28 09:49:56 +08:00

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)
{
}
}
}