Changeset 5283 for branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveWindowsService
- Timestamp:
- 01/11/11 18:16:42 (14 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveWindowsService
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveWindowsService/HeuristicLab.Clients.Hive.Slave.SlaveWindowsService.csproj
r5280 r5283 51 51 <PropertyGroup> 52 52 <StartupObject>HeuristicLab.Clients.Hive.Slave.SlaveWindowsService.Program</StartupObject> 53 </PropertyGroup> 54 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'"> 55 <PlatformTarget>AnyCPU</PlatformTarget> 56 <OutputPath>bin\Debug\</OutputPath> 57 </PropertyGroup> 58 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'"> 59 <PlatformTarget>AnyCPU</PlatformTarget> 60 <OutputPath>bin\Release\</OutputPath> 53 61 </PropertyGroup> 54 62 <ItemGroup> -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveWindowsService/ProjectInstaller.Designer.cs
r5280 r5283 30 30 // 31 31 this.serviceProcessInstaller1.Account = System.ServiceProcess.ServiceAccount.LocalSystem; 32 this.serviceProcessInstaller1.Installers.AddRange(new System.Configuration.Install.Installer[] { 33 this.serviceInstaller1}); 32 34 this.serviceProcessInstaller1.Password = null; 33 35 this.serviceProcessInstaller1.Username = null; … … 35 37 // serviceInstaller1 36 38 // 37 this.serviceInstaller1.DisplayName = "HLHiveSlave"; 38 this.serviceInstaller1.ServiceName = "HLHiveSlave"; 39 this.serviceInstaller1.ServiceName = "HeuristicLab.Clients.Hive.Slave.SlaveWindowsService"; 39 40 this.serviceInstaller1.StartType = System.ServiceProcess.ServiceStartMode.Automatic; 40 41 // … … 42 43 // 43 44 this.Installers.AddRange(new System.Configuration.Install.Installer[] { 44 this.serviceProcessInstaller1, 45 this.serviceInstaller1}); 45 this.serviceProcessInstaller1}); 46 46 47 47 } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveWindowsService/ProjectInstaller.cs
r5280 r5283 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 1 using System; 2 using System.Collections; 3 using System.Collections.Generic; 22 4 using System.ComponentModel; 5 using System.Configuration.Install; 6 using System.Linq; 23 7 24 8 -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveWindowsService/ProjectInstaller.resx
r5280 r5283 119 119 </resheader> 120 120 <metadata name="serviceProcessInstaller1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 121 <value>17, 56</value>121 <value>17, 17</value> 122 122 </metadata> 123 123 <metadata name="serviceInstaller1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveWindowsService/SlaveWindowsService.Designer.cs
r5280 r5283 29 29 // SlaveWindowsService 30 30 // 31 this.ServiceName = "HeuristicLab Hive Slave";31 this.ServiceName = "HeuristicLab.Clients.Hive.Slave.SlaveWindowsService"; 32 32 ((System.ComponentModel.ISupportInitialize)(this.eventLog)).EndInit(); 33 33
Note: See TracChangeset
for help on using the changeset viewer.