Changeset 819
- Timestamp:
- 11/26/08 14:43:36 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 added
- 3 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Client.Common/HeuristicLab.Hive.Client.Common.csproj
r793 r819 66 66 <ItemGroup> 67 67 <Compile Include="CommonPlugin.cs" /> 68 <Compile Include="Interfaces\IJob.cs" />69 <Compile Include="JobBase.cs" />70 68 <Compile Include="Logging.cs" /> 71 69 <Compile Include="MessageQueue.cs" /> 72 70 <Compile Include="Properties\AssemblyInfo.cs" /> 73 71 <Compile Include="Status.cs" /> 74 <Compile Include="TestJob.cs" />75 72 </ItemGroup> 76 73 <ItemGroup> … … 92 89 <None Include="Properties\AssemblyInfo.frame" /> 93 90 </ItemGroup> 91 <ItemGroup> 92 <Folder Include="Interfaces\" /> 93 </ItemGroup> 94 94 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 95 95 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
trunk/sources/HeuristicLab.Hive.Client.Communication/ServiceLocator.cs
r805 r819 13 13 proxy = new ClientCommunicatorClient( 14 14 new NetTcpBinding(), 15 new EndpointAddress("net.tcp://1 92.168.132.1:9000/HiveServer/ClientCommunicator")15 new EndpointAddress("net.tcp://10.20.53.1:9000/HiveServer/ClientCommunicator") 16 16 ); 17 17 } -
trunk/sources/HeuristicLab.Hive.Contracts/HeuristicLab.Hive.Contracts.csproj
r800 r819 67 67 <Compile Include="BusinessObjects\User.cs" /> 68 68 <Compile Include="BusinessObjects\UserGroup.cs" /> 69 <Compile Include="Interfaces\IJob.cs" /> 69 70 <Compile Include="Interfaces\IClientManager.cs" /> 70 71 <Compile Include="Interfaces\IJobManager.cs" /> 71 72 <Compile Include="Interfaces\IServerConsoleFacade.cs" /> 72 73 <Compile Include="Interfaces\IUserRoleManager.cs" /> 74 <Compile Include="JobBase.cs" /> 73 75 <Compile Include="MessageContainer.cs" /> 74 76 <Compile Include="ResponseJob.cs" /> … … 78 80 <Compile Include="Response.cs" /> 79 81 <Compile Include="ResponseHB.cs" /> 82 <Compile Include="TestJob.cs" /> 80 83 </ItemGroup> 81 84 <ItemGroup> 85 <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj"> 86 <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project> 87 <Name>HeuristicLab.Core</Name> 88 </ProjectReference> 82 89 <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj"> 83 90 <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
Note: See TracChangeset
for help on using the changeset viewer.