Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Grid/HeuristicLab.Grid.csproj @ 548

Last change on this file since 548 was 500, checked in by gkronber, 16 years ago

worked on #197 (Use SQLite backend to store waiting engines and results instead of in-memory dictionaries)

File size: 5.1 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.21022</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{545CE756-98D8-423B-AC2E-6E7D70926E5C}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Grid</RootNamespace>
12    <AssemblyName>HeuristicLab.Grid</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\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34    <DocumentationFile>bin\Release\HeuristicLab.Grid.XML</DocumentationFile>
35  </PropertyGroup>
36  <ItemGroup>
37    <Reference Include="System" />
38    <Reference Include="System.Core">
39      <RequiredTargetFramework>3.5</RequiredTargetFramework>
40    </Reference>
41    <Reference Include="System.Data.SQLite, Version=1.0.51.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=x86">
42      <SpecificVersion>False</SpecificVersion>
43      <HintPath>..\HeuristicLab.SQLite\System.Data.SQLite.DLL</HintPath>
44    </Reference>
45    <Reference Include="System.Drawing" />
46    <Reference Include="System.Runtime.Serialization">
47      <RequiredTargetFramework>3.0</RequiredTargetFramework>
48    </Reference>
49    <Reference Include="System.ServiceModel">
50      <RequiredTargetFramework>3.0</RequiredTargetFramework>
51    </Reference>
52    <Reference Include="System.Windows.Forms" />
53    <Reference Include="System.Xml.Linq">
54      <RequiredTargetFramework>3.5</RequiredTargetFramework>
55    </Reference>
56    <Reference Include="System.Data" />
57    <Reference Include="System.Xml" />
58  </ItemGroup>
59  <ItemGroup>
60    <Compile Include="ClientForm.cs">
61      <SubType>Form</SubType>
62    </Compile>
63    <Compile Include="ClientForm.designer.cs">
64      <DependentUpon>ClientForm.cs</DependentUpon>
65    </Compile>
66    <Compile Include="Database.cs" />
67    <Compile Include="EngineRunner.cs" />
68    <Compile Include="EngineStore.cs" />
69    <Compile Include="GridClient.cs" />
70    <Compile Include="GridClientApplication.cs" />
71    <Compile Include="GridServer.cs" />
72    <Compile Include="GridServerApplication.cs" />
73    <Compile Include="HeuristicLabGridPlugin.cs" />
74    <Compile Include="IEngineStore.cs" />
75    <Compile Include="IGridServer.cs" />
76    <Compile Include="JobManager.cs" />
77    <Compile Include="ProcessingEngine.cs" />
78    <Compile Include="Properties\AssemblyInfo.cs" />
79    <Compile Include="JobEntry.cs" />
80    <Compile Include="ServerForm.cs">
81      <SubType>Form</SubType>
82    </Compile>
83    <Compile Include="ServerForm.designer.cs">
84      <DependentUpon>ServerForm.cs</DependentUpon>
85    </Compile>
86  </ItemGroup>
87  <ItemGroup>
88    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
89      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
90      <Name>HeuristicLab.Core</Name>
91    </ProjectReference>
92    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
93      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
94      <Name>HeuristicLab.PluginInfrastructure</Name>
95    </ProjectReference>
96  </ItemGroup>
97  <ItemGroup>
98    <EmbeddedResource Include="ClientForm.resx">
99      <DependentUpon>ClientForm.cs</DependentUpon>
100      <SubType>Designer</SubType>
101    </EmbeddedResource>
102    <EmbeddedResource Include="ServerForm.resx">
103      <DependentUpon>ServerForm.cs</DependentUpon>
104      <SubType>Designer</SubType>
105    </EmbeddedResource>
106  </ItemGroup>
107  <ItemGroup>
108    <None Include="HeuristicLab.snk" />
109    <None Include="Properties\AssemblyInfo.frame" />
110  </ItemGroup>
111  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
112  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
113       Other similar extension points exist, see Microsoft.Common.targets.
114  <Target Name="BeforeBuild">
115  </Target>
116  <Target Name="AfterBuild">
117  </Target>
118  -->
119  <PropertyGroup>
120    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
121  </PropertyGroup>
122</Project>
Note: See TracBrowser for help on using the repository browser.