Changeset 826
- Timestamp:
- 11/26/08 16:30:47 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 13 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/HeuristicLab.Hive.Server.ADODataAccess.csproj
r713 r826 48 48 </ItemGroup> 49 49 <ItemGroup> 50 <Compile Include="ClientAdapter.cs" /> 51 <Compile Include="dsHiveServer.cs"> 52 <DependentUpon>dsHiveServer.xsd</DependentUpon> 53 <SubType>Component</SubType> 54 </Compile> 55 <Compile Include="dsHiveServer.Designer.cs"> 56 <AutoGen>True</AutoGen> 57 <DesignTime>True</DesignTime> 58 <DependentUpon>dsHiveServer.xsd</DependentUpon> 59 </Compile> 50 60 <Compile Include="HiveServerADODataAccessPlugin.cs" /> 51 61 <Compile Include="Properties\AssemblyInfo.cs" /> 62 <Compile Include="Properties\Settings.Designer.cs"> 63 <AutoGen>True</AutoGen> 64 <DesignTimeSharedInput>True</DesignTimeSharedInput> 65 <DependentUpon>Settings.settings</DependentUpon> 66 </Compile> 67 <Compile Include="ResourceAdapter.cs" /> 52 68 </ItemGroup> 53 69 <ItemGroup> 70 <None Include="dsHiveServer.xsc"> 71 <DependentUpon>dsHiveServer.xsd</DependentUpon> 72 </None> 73 <None Include="dsHiveServer.xsd"> 74 <SubType>Designer</SubType> 75 <Generator>MSDataSetGenerator</Generator> 76 <LastGenOutput>dsHiveServer.Designer.cs</LastGenOutput> 77 </None> 78 <None Include="dsHiveServer.xss"> 79 <DependentUpon>dsHiveServer.xsd</DependentUpon> 80 </None> 54 81 <None Include="HeuristicLab.snk" /> 55 82 <None Include="Properties\AssemblyInfo.frame" /> 83 <None Include="Properties\Settings.settings"> 84 <Generator>SettingsSingleFileGenerator</Generator> 85 <LastGenOutput>Settings.Designer.cs</LastGenOutput> 86 </None> 56 87 </ItemGroup> 57 88 <ItemGroup> 89 <ProjectReference Include="..\HeuristicLab.Hive.Contracts\HeuristicLab.Hive.Contracts.csproj"> 90 <Project>{134F93D7-E7C8-4ECD-9923-7F63259A60D8}</Project> 91 <Name>HeuristicLab.Hive.Contracts</Name> 92 </ProjectReference> 93 <ProjectReference Include="..\HeuristicLab.Hive.Server.Core\HeuristicLab.Hive.Server.Core.csproj"> 94 <Project>{898B31CF-81DC-453B-AEB3-BDF83197A7EE}</Project> 95 <Name>HeuristicLab.Hive.Server.Core</Name> 96 </ProjectReference> 58 97 <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj"> 59 98 <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project> -
trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/HiveServerADODataAccessPlugin.cs
r713 r826 25 25 using HeuristicLab.PluginInfrastructure; 26 26 27 namespace HeuristicLab.Hive.Server {27 namespace HeuristicLab.Hive.Server.ADODataAccess { 28 28 [ClassInfo(Name = "HeuristicLab.Hive.Server.ADODataAccess-3.2")] 29 29 [PluginFile(Filename = "HeuristicLab.Hive.Server.ADODataAccess-3.2.dll", Filetype = PluginFileType.Assembly)] … … 31 31 [Dependency(Dependency = "HeuristicLab.Hive.Server.Core-3.2")] 32 32 public class HiveServerADODataAccessPlugin : PluginBase { 33 34 static HiveServerADODataAccessPlugin() { 35 } 33 36 } 34 37 } -
trunk/sources/HeuristicLab.Hive.Server.Core/HeuristicLab.Hive.Server.Core.csproj
r823 r826 50 50 <Compile Include="ClientCommunicator.cs" /> 51 51 <Compile Include="ClientManager.cs" /> 52 <Compile Include="DbTestApp.cs" /> 52 53 <Compile Include="HiveServerCorePlugin.cs" /> 54 <Compile Include="InternalInterfaces\DataAccess\IClientAdapter.cs" /> 55 <Compile Include="InternalInterfaces\DataAccess\IResourceAdapter.cs" /> 53 56 <Compile Include="JobManager.cs" /> 54 57 <Compile Include="Properties\AssemblyInfo.cs" /> 55 58 <Compile Include="ServerConsoleFacade.cs" /> 59 <Compile Include="ServiceLocator.cs" /> 56 60 <Compile Include="UserRoleManager.cs" /> 57 61 </ItemGroup> … … 74 78 </ProjectReference> 75 79 </ItemGroup> 76 <ItemGroup>77 <Folder Include="InternalInterfaces\DataAccess\" />78 </ItemGroup>79 80 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 80 81 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Note: See TracChangeset
for help on using the changeset viewer.