Changeset 6898 for branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.WindowsService
- Timestamp:
- 10/10/11 16:47:07 (13 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.WindowsService/3.3
- Files:
-
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.WindowsService/3.3/HeuristicLab.Clients.Hive.Slave.WindowsService-3.3.csproj
r6744 r6898 9 9 <OutputType>WinExe</OutputType> 10 10 <AppDesignerFolder>Properties</AppDesignerFolder> 11 <RootNamespace>HeuristicLab.Clients.Hive.Slave Core.SlaveWindowsService</RootNamespace>12 <AssemblyName>HeuristicLab.Clients.Hive.Slave. SlaveWindowsService</AssemblyName>11 <RootNamespace>HeuristicLab.Clients.Hive.Slave.WindowsService</RootNamespace> 12 <AssemblyName>HeuristicLab.Clients.Hive.Slave.WindowsService</AssemblyName> 13 13 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> 14 14 <FileAlignment>512</FileAlignment> … … 50 50 </PropertyGroup> 51 51 <PropertyGroup> 52 <StartupObject>HeuristicLab.Clients.Hive.SlaveCore. SlaveWindowsService.Program</StartupObject>52 <StartupObject>HeuristicLab.Clients.Hive.SlaveCore.WindowsService.Program</StartupObject> 53 53 </PropertyGroup> 54 54 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'"> … … 115 115 <ItemGroup> 116 116 <None Include="app.config" /> 117 <None Include="testInstall.bat" />118 117 </ItemGroup> 119 118 <ItemGroup> -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.WindowsService/3.3/Program.cs
r6744 r6898 22 22 using System.ServiceProcess; 23 23 24 namespace HeuristicLab.Clients.Hive.SlaveCore. SlaveWindowsService {24 namespace HeuristicLab.Clients.Hive.SlaveCore.WindowsService { 25 25 static class Program { 26 26 /// <summary> -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.WindowsService/3.3/ProjectInstaller.Designer.cs
r6744 r6898 1 namespace HeuristicLab.Clients.Hive.SlaveCore. SlaveWindowsService {1 namespace HeuristicLab.Clients.Hive.SlaveCore.WindowsService { 2 2 partial class ProjectInstaller { 3 3 /// <summary> … … 37 37 // serviceInstaller1 38 38 // 39 this.serviceInstaller1.ServiceName = "HeuristicLab.Clients.Hive.Slave Core.SlaveWindowsService";39 this.serviceInstaller1.ServiceName = "HeuristicLab.Clients.Hive.Slave"; 40 40 this.serviceInstaller1.StartType = System.ServiceProcess.ServiceStartMode.Automatic; 41 41 // -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.WindowsService/3.3/ProjectInstaller.cs
r6744 r6898 5 5 6 6 7 namespace HeuristicLab.Clients.Hive.SlaveCore. SlaveWindowsService {7 namespace HeuristicLab.Clients.Hive.SlaveCore.WindowsService { 8 8 [RunInstaller(true)] 9 9 public partial class ProjectInstaller : System.Configuration.Install.Installer { -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.WindowsService/3.3/ProjectInstaller.resx
r6744 r6898 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, 17</value>121 <value>17, 56</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.WindowsService/3.3/SlaveWindowsService.Designer.cs
r6744 r6898 1 namespace HeuristicLab.Clients.Hive.SlaveCore. SlaveWindowsService {1 namespace HeuristicLab.Clients.Hive.SlaveCore.WindowsService { 2 2 partial class SlaveWindowsService { 3 3 /// <summary> … … 29 29 // SlaveWindowsService 30 30 // 31 this.ServiceName = "HeuristicLab.Clients.Hive.Slave Core.SlaveWindowsService";31 this.ServiceName = "HeuristicLab.Clients.Hive.Slave"; 32 32 ((System.ComponentModel.ISupportInitialize)(this.eventLog)).EndInit(); 33 33 -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.WindowsService/3.3/SlaveWindowsService.cs
r6897 r6898 23 23 using System.Threading; 24 24 25 namespace HeuristicLab.Clients.Hive.SlaveCore. SlaveWindowsService {25 namespace HeuristicLab.Clients.Hive.SlaveCore.WindowsService { 26 26 public partial class SlaveWindowsService : ServiceBase { 27 27 private Core core;
Note: See TracChangeset
for help on using the changeset viewer.