Changeset 4073 for branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.LINQDataAccess
- Timestamp:
- 07/22/10 10:27:42 (14 years ago)
- 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 19 19 if (_hiveDataContext == null) { 20 20 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"); 22 22 _hiveDataContext.CommandTimeout = 240; 23 23 } -
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.LINQDataAccess/3.3/HeuristicLab.Hive.Server.LINQDataAccess-3.3.csproj
r4057 r4073 1 1 <?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"> 3 3 <PropertyGroup> 4 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> … … 15 15 <SignAssembly>true</SignAssembly> 16 16 <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile> 17 <FileUpgradeFlags> 18 </FileUpgradeFlags> 19 <OldToolsVersion>3.5</OldToolsVersion> 20 <UpgradeBackupLocation /> 17 21 </PropertyGroup> 18 22 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> … … 25 29 <WarningLevel>4</WarningLevel> 26 30 <PlatformTarget>AnyCPU</PlatformTarget> 31 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 27 32 </PropertyGroup> 28 33 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> … … 33 38 <ErrorReport>prompt</ErrorReport> 34 39 <WarningLevel>4</WarningLevel> 40 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 35 41 </PropertyGroup> 36 42 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> … … 41 47 <PlatformTarget>x86</PlatformTarget> 42 48 <ErrorReport>prompt</ErrorReport> 49 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 43 50 </PropertyGroup> 44 51 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> … … 49 56 <PlatformTarget>x86</PlatformTarget> 50 57 <ErrorReport>prompt</ErrorReport> 58 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 51 59 </PropertyGroup> 52 60 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> … … 57 65 <PlatformTarget>x64</PlatformTarget> 58 66 <ErrorReport>prompt</ErrorReport> 67 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 59 68 </PropertyGroup> 60 69 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> … … 65 74 <PlatformTarget>x64</PlatformTarget> 66 75 <ErrorReport>prompt</ErrorReport> 76 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 67 77 </PropertyGroup> 68 78 <ItemGroup> … … 109 119 </ItemGroup> 110 120 <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"> 112 122 <Project>{9076697B-C151-46CD-95BC-1D059492B478}</Project> 113 123 <Name>HeuristicLab.DataAccess-3.2</Name> 114 124 </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"> 116 126 <Project>{134F93D7-E7C8-4ECD-9923-7F63259A60D8}</Project> 117 127 <Name>HeuristicLab.Hive.Contracts-3.2</Name> 118 128 </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"> 120 130 <Project>{4D5A2A16-66C2-431D-9AA3-BD3041E64B84}</Project> 121 131 <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 3 3 // <auto-generated> 4 4 // This code was generated by a tool. 5 // Runtime Version:2.0.50727. 49275 // Runtime Version:2.0.50727.3603 6 6 // 7 7 // 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 2 2 // <auto-generated> 3 3 // This code was generated by a tool. 4 // Runtime Version: 2.0.50727.49274 // Runtime Version:4.0.30319.1 5 5 // 6 6 // Changes to this file may cause incorrect behavior and will be lost if … … 13 13 14 14 [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")] 16 16 internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 17
Note: See TracChangeset
for help on using the changeset viewer.