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

File Contents

# User Rev Content
1 william 145 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 CPanel : System.Configuration.Install.Installer
13     {
14     public CPanel()
15     {
16     InitializeComponent();
17     }
18     }
19     }