ProjectInstaller.cs 674 字节
using OnlineStore.Common;
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration.Install;
using System.Linq;
using System.Threading.Tasks;

namespace StoreServer
{
    [RunInstaller(true)]
    public partial class ProjectInstaller : System.Configuration.Install.Installer
    {
        public ProjectInstaller()
        {
            InitializeComponent();
            string cid = ConfigAppSettings.GetValue(Setting_Init.Line_CID);
            if (!cid.Equals(""))
            {
                this.AssemblyLineSystem.Description = "流水线系统[" +cid +"]";
            }
        }
    }
}