mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-02-12 01:44:58 +00:00
18 lines
383 B
C#
18 lines
383 B
C#
|
using System;
|
|||
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Configuration.Install;
|
|||
|
|
|||
|
namespace WelsonJS.Service
|
|||
|
{
|
|||
|
[RunInstaller(true)]
|
|||
|
public partial class ProjectInstaller : System.Configuration.Install.Installer
|
|||
|
{
|
|||
|
public ProjectInstaller()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|