CNAS取数仪器端升级
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ProjectInstaller.cs 402B

4 달 전
123456789101112131415161718
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Configuration.Install;
  6. using System.Linq;
  7. namespace CNAS_SyncService
  8. {
  9. [RunInstaller(true)]
  10. public partial class ProjectInstaller : System.Configuration.Install.Installer
  11. {
  12. public ProjectInstaller()
  13. {
  14. InitializeComponent();
  15. }
  16. }
  17. }