Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/10 10:27:42 (14 years ago)
Author:
cneumuel
Message:

moved remaining Hive projects to 3.3-HiveMigration (#1091)

Location:
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.LINQDataAccess
Files:
2 deleted
3 edited
3 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.LINQDataAccess/3.3/ContextFactory.cs

    r3931 r4073  
    1919        if (_hiveDataContext == null) {
    2020          Logger.Debug("Requested new Data Context");
    21           _hiveDataContext = new HiveDataContext("Data Source=127.0.0.1;Initial Catalog=HeuristicLab.Hive.Linq.Test;Integrated Security=SSPI");
     21          _hiveDataContext = new HiveDataContext("Data Source=127.0.0.1;Initial Catalog=HeuristicLab.Hive;Integrated Security=SSPI");
    2222          _hiveDataContext.CommandTimeout = 240;
    2323        }
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.LINQDataAccess/3.3/HeuristicLab.Hive.Server.LINQDataAccess-3.3.csproj

    r4057 r4073  
    11<?xml version="1.0" encoding="utf-8"?>
    2 <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
     2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    33  <PropertyGroup>
    44    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
     
    1515    <SignAssembly>true</SignAssembly>
    1616    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
     17    <FileUpgradeFlags>
     18    </FileUpgradeFlags>
     19    <OldToolsVersion>3.5</OldToolsVersion>
     20    <UpgradeBackupLocation />
    1721  </PropertyGroup>
    1822  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     
    2529    <WarningLevel>4</WarningLevel>
    2630    <PlatformTarget>AnyCPU</PlatformTarget>
     31    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    2732  </PropertyGroup>
    2833  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
     
    3338    <ErrorReport>prompt</ErrorReport>
    3439    <WarningLevel>4</WarningLevel>
     40    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    3541  </PropertyGroup>
    3642  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     
    4147    <PlatformTarget>x86</PlatformTarget>
    4248    <ErrorReport>prompt</ErrorReport>
     49    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    4350  </PropertyGroup>
    4451  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     
    4956    <PlatformTarget>x86</PlatformTarget>
    5057    <ErrorReport>prompt</ErrorReport>
     58    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    5159  </PropertyGroup>
    5260  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
     
    5765    <PlatformTarget>x64</PlatformTarget>
    5866    <ErrorReport>prompt</ErrorReport>
     67    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    5968  </PropertyGroup>
    6069  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
     
    6574    <PlatformTarget>x64</PlatformTarget>
    6675    <ErrorReport>prompt</ErrorReport>
     76    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    6777  </PropertyGroup>
    6878  <ItemGroup>
     
    109119  </ItemGroup>
    110120  <ItemGroup>
    111     <ProjectReference Include="..\..\HeuristicLab.DataAccess\3.2\HeuristicLab.DataAccess-3.2.csproj">
     121    <ProjectReference Include="..\..\HeuristicLab.DataAccess\3.3\HeuristicLab.DataAccess-3.3.csproj">
    112122      <Project>{9076697B-C151-46CD-95BC-1D059492B478}</Project>
    113123      <Name>HeuristicLab.DataAccess-3.2</Name>
    114124    </ProjectReference>
    115     <ProjectReference Include="..\..\HeuristicLab.Hive.Contracts\3.2\HeuristicLab.Hive.Contracts-3.2.csproj">
     125    <ProjectReference Include="..\..\HeuristicLab.Hive.Contracts\3.3\HeuristicLab.Hive.Contracts-3.3.csproj">
    116126      <Project>{134F93D7-E7C8-4ECD-9923-7F63259A60D8}</Project>
    117127      <Name>HeuristicLab.Hive.Contracts-3.2</Name>
    118128    </ProjectReference>
    119     <ProjectReference Include="..\..\HeuristicLab.Hive.Server.DataAccess\3.2\HeuristicLab.Hive.Server.DataAccess-3.2.csproj">
     129    <ProjectReference Include="..\..\HeuristicLab.Hive.Server.DataAccess\3.3\HeuristicLab.Hive.Server.DataAccess-3.3.csproj">
    120130      <Project>{4D5A2A16-66C2-431D-9AA3-BD3041E64B84}</Project>
    121131      <Name>HeuristicLab.Hive.Server.DataAccess-3.2</Name>
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.LINQDataAccess/3.3/Hive.designer.cs

    r3931 r4073  
    33// <auto-generated>
    44//     This code was generated by a tool.
    5 //     Runtime Version:2.0.50727.4927
     5//     Runtime Version:2.0.50727.3603
    66//
    77//     Changes to this file may cause incorrect behavior and will be lost if
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.LINQDataAccess/3.3/Properties/Settings.Designer.cs

    r3931 r4073  
    22// <auto-generated>
    33//     This code was generated by a tool.
    4 //     Runtime Version:2.0.50727.4927
     4//     Runtime Version:4.0.30319.1
    55//
    66//     Changes to this file may cause incorrect behavior and will be lost if
     
    1313   
    1414    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
    15     [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "9.0.0.0")]
     15    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")]
    1616    internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
    1717       
Note: See TracChangeset for help on using the changeset viewer.