From 1bd3cd422512d7d5fc562950cfaa6dee22a3c0a4 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Thu, 29 Aug 2013 12:36:24 -0400 Subject: Forgot to add new files in previous commit. --- vsprojects/Service/ZeroTierOneService.Designer.cs | 71 +++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 vsprojects/Service/ZeroTierOneService.Designer.cs (limited to 'vsprojects/Service/ZeroTierOneService.Designer.cs') diff --git a/vsprojects/Service/ZeroTierOneService.Designer.cs b/vsprojects/Service/ZeroTierOneService.Designer.cs new file mode 100644 index 00000000..9b1f6ddf --- /dev/null +++ b/vsprojects/Service/ZeroTierOneService.Designer.cs @@ -0,0 +1,71 @@ +namespace Service +{ + partial class ZeroTierOneService + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.zeroTierProcess = new System.Diagnostics.Process(); + this.checkForUpdatesTimer = new System.Windows.Forms.Timer(this.components); + // + // zeroTierProcess + // + this.zeroTierProcess.EnableRaisingEvents = true; + this.zeroTierProcess.StartInfo.CreateNoWindow = true; + this.zeroTierProcess.StartInfo.Domain = ""; + this.zeroTierProcess.StartInfo.LoadUserProfile = false; + this.zeroTierProcess.StartInfo.Password = null; + this.zeroTierProcess.StartInfo.RedirectStandardError = true; + this.zeroTierProcess.StartInfo.RedirectStandardInput = true; + this.zeroTierProcess.StartInfo.RedirectStandardOutput = true; + this.zeroTierProcess.StartInfo.StandardErrorEncoding = null; + this.zeroTierProcess.StartInfo.StandardOutputEncoding = null; + this.zeroTierProcess.StartInfo.UserName = ""; + this.zeroTierProcess.StartInfo.UseShellExecute = false; + this.zeroTierProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; + this.zeroTierProcess.OutputDataReceived += new System.Diagnostics.DataReceivedEventHandler(this.zeroTierProcess_OutputDataReceived); + this.zeroTierProcess.ErrorDataReceived += new System.Diagnostics.DataReceivedEventHandler(this.zeroTierProcess_ErrorDataReceived); + this.zeroTierProcess.Exited += new System.EventHandler(this.zeroTierProcess_Exited); + // + // checkForUpdatesTimer + // + this.checkForUpdatesTimer.Enabled = true; + this.checkForUpdatesTimer.Interval = 3600000; + this.checkForUpdatesTimer.Tick += new System.EventHandler(this.checkForUpdatesTimer_Tick); + // + // ZeroTierOneService + // + this.ServiceName = "ZeroTier One"; + + } + + #endregion + + private System.Diagnostics.Process zeroTierProcess; + private System.Windows.Forms.Timer checkForUpdatesTimer; + } +} -- cgit v1.2.3