tijian_jichuang/Code/SOH.FenZhen.Server/ProjectInstaller.cs
2025-02-20 11:54:48 +08:00

19 lines
404 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration.Install;
using System.Linq;
namespace SOH.FenZhen.Server
{
[RunInstaller(true)]
public partial class ProjectInstaller : System.Configuration.Install.Installer
{
public ProjectInstaller()
{
InitializeComponent();
}
}
}