~ubuntu-branches/ubuntu/trusty/websockify/trusty-updates

« back to all changes in this revision

Viewing changes to Windows/noVNC Websocket Service Project/ProjectInstaller.cs

  • Committer: Package Import Robot
  • Author(s): Thomas Goirand
  • Date: 2013-02-23 01:22:51 UTC
  • Revision ID: package-import@ubuntu.com-20130223012251-3qkk1n1p93kb3j87
Tags: upstream-0.3.0+dfsg1
Import upstream version 0.3.0+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 MELT_Command_Websocket
 
10
{
 
11
    [RunInstaller(true)]
 
12
    public partial class ProjectInstaller : System.Configuration.Install.Installer
 
13
    {
 
14
        public ProjectInstaller()
 
15
        {
 
16
            InitializeComponent();
 
17
        }
 
18
    }
 
19
}