Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2/HeuristicLab.Hive.Server.LINQDataAccess-3.2.csproj @ 3021

Last change on this file since 3021 was 3011, checked in by kgrading, 15 years ago

changed the complete DAL to LINQ 2 SQL (with the exception of the job streaming), did a lot of refactoring, Introduced DTOs (that are named DTOs for better understanding), added the spring.NET Interceptor, reintroduced transactions and cleaned up the whole JobResult thing and updated a part of the config merger (#830)

File size: 6.9 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{A4499DDD-D1B8-414F-98F6-903C2C71BEB0}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Hive.Server.LINQDataAccess</RootNamespace>
12    <AssemblyName>HeuristicLab.Hive.Server.LINQDataAccess-3.2</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\x86\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26    <PlatformTarget>x86</PlatformTarget>
27  </PropertyGroup>
28  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29    <DebugType>pdbonly</DebugType>
30    <Optimize>true</Optimize>
31    <OutputPath>bin\Release\</OutputPath>
32    <DefineConstants>TRACE</DefineConstants>
33    <ErrorReport>prompt</ErrorReport>
34    <WarningLevel>4</WarningLevel>
35  </PropertyGroup>
36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
37    <DebugSymbols>true</DebugSymbols>
38    <OutputPath>bin\x86\Debug\</OutputPath>
39    <DefineConstants>DEBUG;TRACE</DefineConstants>
40    <DebugType>full</DebugType>
41    <PlatformTarget>x86</PlatformTarget>
42    <ErrorReport>prompt</ErrorReport>
43  </PropertyGroup>
44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
45    <OutputPath>bin\x86\Release\</OutputPath>
46    <DefineConstants>TRACE</DefineConstants>
47    <Optimize>true</Optimize>
48    <DebugType>pdbonly</DebugType>
49    <PlatformTarget>x86</PlatformTarget>
50    <ErrorReport>prompt</ErrorReport>
51  </PropertyGroup>
52  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
53    <DebugSymbols>true</DebugSymbols>
54    <OutputPath>bin\x64\Debug\</OutputPath>
55    <DefineConstants>DEBUG;TRACE</DefineConstants>
56    <DebugType>full</DebugType>
57    <PlatformTarget>x64</PlatformTarget>
58    <ErrorReport>prompt</ErrorReport>
59  </PropertyGroup>
60  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
61    <OutputPath>bin\x64\Release\</OutputPath>
62    <DefineConstants>TRACE</DefineConstants>
63    <Optimize>true</Optimize>
64    <DebugType>pdbonly</DebugType>
65    <PlatformTarget>x64</PlatformTarget>
66    <ErrorReport>prompt</ErrorReport>
67  </PropertyGroup>
68  <ItemGroup>
69    <Reference Include="System" />
70    <Reference Include="System.Core">
71      <RequiredTargetFramework>3.5</RequiredTargetFramework>
72    </Reference>
73    <Reference Include="System.Data.Linq">
74      <RequiredTargetFramework>3.5</RequiredTargetFramework>
75    </Reference>
76    <Reference Include="System.Drawing" />
77    <Reference Include="System.Windows.Forms" />
78    <Reference Include="System.Xml.Linq">
79      <RequiredTargetFramework>3.5</RequiredTargetFramework>
80    </Reference>
81    <Reference Include="System.Data.DataSetExtensions">
82      <RequiredTargetFramework>3.5</RequiredTargetFramework>
83    </Reference>
84    <Reference Include="System.Data" />
85    <Reference Include="System.Xml" />
86  </ItemGroup>
87  <ItemGroup>
88    <Compile Include="BaseDao.cs" />
89    <Compile Include="ClientConfigDao.cs" />
90    <Compile Include="ClientDao.cs" />
91    <Compile Include="ClientGroupDao.cs" />
92    <Compile Include="ContextFactory.cs" />
93    <Compile Include="Hive.designer.cs">
94      <AutoGen>True</AutoGen>
95      <DesignTime>True</DesignTime>
96      <DependentUpon>Hive.dbml</DependentUpon>
97    </Compile>
98    <Compile Include="JobDao.cs" />
99    <Compile Include="LINQDataAccessPlugin.cs" />
100    <Compile Include="PluginInfoDao.cs" />
101    <Compile Include="Properties\AssemblyInfo.cs" />
102    <Compile Include="Properties\Settings.Designer.cs">
103      <AutoGen>True</AutoGen>
104      <DesignTimeSharedInput>True</DesignTimeSharedInput>
105      <DependentUpon>Settings.settings</DependentUpon>
106    </Compile>
107  </ItemGroup>
108  <ItemGroup>
109    <None Include="Hive.dbml">
110      <Generator>MSLinqToSQLGenerator</Generator>
111      <LastGenOutput>Hive.designer.cs</LastGenOutput>
112      <SubType>Designer</SubType>
113    </None>
114    <None Include="HeuristicLab.snk" />
115    <None Include="Properties\AssemblyInfo.frame" />
116  </ItemGroup>
117  <ItemGroup>
118    <ProjectReference Include="..\..\HeuristicLab.DataAccess\3.2\HeuristicLab.DataAccess-3.2.csproj">
119      <Project>{9076697B-C151-46CD-95BC-1D059492B478}</Project>
120      <Name>HeuristicLab.DataAccess-3.2</Name>
121    </ProjectReference>
122    <ProjectReference Include="..\..\HeuristicLab.Hive.Contracts\3.2\HeuristicLab.Hive.Contracts-3.2.csproj">
123      <Project>{134F93D7-E7C8-4ECD-9923-7F63259A60D8}</Project>
124      <Name>HeuristicLab.Hive.Contracts-3.2</Name>
125    </ProjectReference>
126    <ProjectReference Include="..\..\HeuristicLab.Hive.Server.DataAccess\3.2\HeuristicLab.Hive.Server.DataAccess-3.2.csproj">
127      <Project>{4D5A2A16-66C2-431D-9AA3-BD3041E64B84}</Project>
128      <Name>HeuristicLab.Hive.Server.DataAccess-3.2</Name>
129    </ProjectReference>
130    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
131      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
132      <Name>HeuristicLab.PluginInfrastructure</Name>
133    </ProjectReference>
134  </ItemGroup>
135  <ItemGroup>
136    <Service Include="{3259AA49-8AA1-44D3-9025-A0B520596A8C}" />
137  </ItemGroup>
138  <ItemGroup>
139    <None Include="app.config" />
140    <None Include="Hive.dbml.layout">
141      <DependentUpon>Hive.dbml</DependentUpon>
142    </None>
143    <None Include="Properties\Settings.settings">
144      <Generator>SettingsSingleFileGenerator</Generator>
145      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
146    </None>
147  </ItemGroup>
148  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
149  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
150       Other similar extension points exist, see Microsoft.Common.targets.
151  <Target Name="BeforeBuild">
152  </Target>
153  <Target Name="AfterBuild">
154  </Target>
155  -->
156  <PropertyGroup>
157    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
158set ProjectDir=$(ProjectDir)
159set SolutionDir=$(SolutionDir)
160set Outdir=$(Outdir)
161
162call PreBuildEvent.cmd</PreBuildEvent>
163  </PropertyGroup>
164</Project>
Note: See TracBrowser for help on using the repository browser.