Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 1110 was 1110, checked in by gkronber, 15 years ago

implemented #461 (HL.Grid shouldn't depend directly on System.Data.SQLite) by removing the direct reference to System.Data.SQLite and replacing it with a factory in HL.Grid.Database.

File size: 5.7 KB
RevLine 
[2]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>
[574]6    <ProductVersion>9.0.30729</ProductVersion>
[2]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>
[582]12    <AssemblyName>HeuristicLab.Grid-3.2</AssemblyName>
[2]13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
[374]15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
[2]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>
[582]34    <DocumentationFile>bin\Release\HeuristicLab.Grid-3.2.XML</DocumentationFile>
[2]35  </PropertyGroup>
[564]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>
[582]47    <DocumentationFile>bin\Release\HeuristicLab.Grid-3.2.XML</DocumentationFile>
[564]48    <Optimize>true</Optimize>
49    <DebugType>pdbonly</DebugType>
50    <PlatformTarget>x86</PlatformTarget>
51    <ErrorReport>prompt</ErrorReport>
52  </PropertyGroup>
[2]53  <ItemGroup>
54    <Reference Include="System" />
55    <Reference Include="System.Core">
56      <RequiredTargetFramework>3.5</RequiredTargetFramework>
57    </Reference>
58    <Reference Include="System.Drawing" />
59    <Reference Include="System.Runtime.Serialization">
60      <RequiredTargetFramework>3.0</RequiredTargetFramework>
61    </Reference>
62    <Reference Include="System.ServiceModel">
63      <RequiredTargetFramework>3.0</RequiredTargetFramework>
64    </Reference>
65    <Reference Include="System.Windows.Forms" />
66    <Reference Include="System.Xml.Linq">
67      <RequiredTargetFramework>3.5</RequiredTargetFramework>
68    </Reference>
69    <Reference Include="System.Data" />
70    <Reference Include="System.Xml" />
71  </ItemGroup>
72  <ItemGroup>
73    <Compile Include="ClientForm.cs">
74      <SubType>Form</SubType>
75    </Compile>
76    <Compile Include="ClientForm.designer.cs">
77      <DependentUpon>ClientForm.cs</DependentUpon>
78    </Compile>
[500]79    <Compile Include="Database.cs" />
[440]80    <Compile Include="EngineRunner.cs" />
[2]81    <Compile Include="EngineStore.cs" />
[440]82    <Compile Include="GridClient.cs" />
[2]83    <Compile Include="GridClientApplication.cs" />
84    <Compile Include="GridServer.cs" />
85    <Compile Include="GridServerApplication.cs" />
86    <Compile Include="HeuristicLabGridPlugin.cs" />
87    <Compile Include="IEngineStore.cs" />
88    <Compile Include="IGridServer.cs" />
[372]89    <Compile Include="JobManager.cs" />
[2]90    <Compile Include="ProcessingEngine.cs" />
91    <Compile Include="Properties\AssemblyInfo.cs" />
[500]92    <Compile Include="JobEntry.cs" />
[2]93    <Compile Include="ServerForm.cs">
94      <SubType>Form</SubType>
95    </Compile>
96    <Compile Include="ServerForm.designer.cs">
97      <DependentUpon>ServerForm.cs</DependentUpon>
98    </Compile>
99  </ItemGroup>
100  <ItemGroup>
101    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
102      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
103      <Name>HeuristicLab.Core</Name>
104    </ProjectReference>
105    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
106      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
107      <Name>HeuristicLab.PluginInfrastructure</Name>
108    </ProjectReference>
109  </ItemGroup>
110  <ItemGroup>
111    <EmbeddedResource Include="ClientForm.resx">
112      <DependentUpon>ClientForm.cs</DependentUpon>
113      <SubType>Designer</SubType>
114    </EmbeddedResource>
115    <EmbeddedResource Include="ServerForm.resx">
116      <DependentUpon>ServerForm.cs</DependentUpon>
117      <SubType>Designer</SubType>
118    </EmbeddedResource>
119  </ItemGroup>
[30]120  <ItemGroup>
[374]121    <None Include="HeuristicLab.snk" />
[30]122    <None Include="Properties\AssemblyInfo.frame" />
123  </ItemGroup>
[2]124  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
125  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
126       Other similar extension points exist, see Microsoft.Common.targets.
127  <Target Name="BeforeBuild">
128  </Target>
129  <Target Name="AfterBuild">
130  </Target>
131  -->
[30]132  <PropertyGroup>
[852]133    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
134set ProjectDir=$(ProjectDir)
135set SolutionDir=$(SolutionDir)
136set Outdir=$(Outdir)
137
138call PreBuildEvent.cmd</PreBuildEvent>
[30]139  </PropertyGroup>
[2]140</Project>
Note: See TracBrowser for help on using the repository browser.