Free cookie consent management tool by TermsFeed Policy Generator

Changeset 826


Ignore:
Timestamp:
11/26/08 16:30:47 (15 years ago)
Author:
svonolfe
Message:

Added initial version of the DAL (#372)

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  
    4848  </ItemGroup>
    4949  <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>
    5060    <Compile Include="HiveServerADODataAccessPlugin.cs" />
    5161    <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" />
    5268  </ItemGroup>
    5369  <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>
    5481    <None Include="HeuristicLab.snk" />
    5582    <None Include="Properties\AssemblyInfo.frame" />
     83    <None Include="Properties\Settings.settings">
     84      <Generator>SettingsSingleFileGenerator</Generator>
     85      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
     86    </None>
    5687  </ItemGroup>
    5788  <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>
    5897    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
    5998      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
  • trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/HiveServerADODataAccessPlugin.cs

    r713 r826  
    2525using HeuristicLab.PluginInfrastructure;
    2626
    27 namespace HeuristicLab.Hive.Server {
     27namespace HeuristicLab.Hive.Server.ADODataAccess {
    2828  [ClassInfo(Name = "HeuristicLab.Hive.Server.ADODataAccess-3.2")]
    2929  [PluginFile(Filename = "HeuristicLab.Hive.Server.ADODataAccess-3.2.dll", Filetype = PluginFileType.Assembly)]
     
    3131  [Dependency(Dependency = "HeuristicLab.Hive.Server.Core-3.2")]
    3232  public class HiveServerADODataAccessPlugin : PluginBase {
     33
     34    static HiveServerADODataAccessPlugin() {
     35    }
    3336  }
    3437}
  • trunk/sources/HeuristicLab.Hive.Server.Core/HeuristicLab.Hive.Server.Core.csproj

    r823 r826  
    5050    <Compile Include="ClientCommunicator.cs" />
    5151    <Compile Include="ClientManager.cs" />
     52    <Compile Include="DbTestApp.cs" />
    5253    <Compile Include="HiveServerCorePlugin.cs" />
     54    <Compile Include="InternalInterfaces\DataAccess\IClientAdapter.cs" />
     55    <Compile Include="InternalInterfaces\DataAccess\IResourceAdapter.cs" />
    5356    <Compile Include="JobManager.cs" />
    5457    <Compile Include="Properties\AssemblyInfo.cs" />
    5558    <Compile Include="ServerConsoleFacade.cs" />
     59    <Compile Include="ServiceLocator.cs" />
    5660    <Compile Include="UserRoleManager.cs" />
    5761  </ItemGroup>
     
    7478    </ProjectReference>
    7579  </ItemGroup>
    76   <ItemGroup>
    77     <Folder Include="InternalInterfaces\DataAccess\" />
    78   </ItemGroup>
    7980  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    8081  <!-- 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.