ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/AnywhereTS-MSSQL/trunk/TSAdminTool/ATSAmdin.Installer.cs
Revision: 145
Committed: Sun Jul 15 08:34:18 2012 UTC (11 years, 2 months ago) by william
File size: 400 byte(s)
Log Message:
+ add installer classes (did not need to create new projects)

File Contents

# Content
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
8
9 namespace AnywhereTS
10 {
11 [RunInstaller(true)]
12 public partial class ATSAmdin : System.Configuration.Install.Installer
13 {
14 public ATSAmdin()
15 {
16 InitializeComponent();
17 }
18 }
19 }