Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Server/HeuristicLab.CEDMA.Server.csproj @ 1044

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

worked on dispatcher for CEDMA agents. #419 (Refactor CEDMA plugins)

File size: 6.3 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>{F05D261A-4F7D-46C9-AB9C-21FD4566D719}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.CEDMA.Server</RootNamespace>
12    <AssemblyName>HeuristicLab.CEDMA.Server-3.2</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>false</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  </PropertyGroup>
35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
36    <DebugSymbols>true</DebugSymbols>
37    <OutputPath>bin\x86\Debug\</OutputPath>
38    <DefineConstants>DEBUG;TRACE</DefineConstants>
39    <DebugType>full</DebugType>
40    <PlatformTarget>x86</PlatformTarget>
41    <ErrorReport>prompt</ErrorReport>
42  </PropertyGroup>
43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
44    <OutputPath>bin\x86\Release\</OutputPath>
45    <DefineConstants>TRACE</DefineConstants>
46    <Optimize>true</Optimize>
47    <DebugType>pdbonly</DebugType>
48    <PlatformTarget>x86</PlatformTarget>
49    <ErrorReport>prompt</ErrorReport>
50  </PropertyGroup>
51  <ItemGroup>
52    <Reference Include="System" />
53    <Reference Include="System.Core">
54      <RequiredTargetFramework>3.5</RequiredTargetFramework>
55    </Reference>
56    <Reference Include="System.Data.Linq">
57      <RequiredTargetFramework>3.5</RequiredTargetFramework>
58    </Reference>
59    <Reference Include="System.Drawing" />
60    <Reference Include="System.Runtime.Serialization">
61      <RequiredTargetFramework>3.0</RequiredTargetFramework>
62    </Reference>
63    <Reference Include="System.ServiceModel">
64      <RequiredTargetFramework>3.0</RequiredTargetFramework>
65    </Reference>
66    <Reference Include="System.Windows.Forms" />
67    <Reference Include="System.Xml.Linq">
68      <RequiredTargetFramework>3.5</RequiredTargetFramework>
69    </Reference>
70    <Reference Include="System.Data.DataSetExtensions">
71      <RequiredTargetFramework>3.5</RequiredTargetFramework>
72    </Reference>
73    <Reference Include="System.Data" />
74    <Reference Include="System.Xml" />
75  </ItemGroup>
76  <ItemGroup>
77    <Compile Include="Dispatcher.cs" />
78    <Compile Include="Server.cs" />
79    <Compile Include="ServerApplication.cs" />
80    <Compile Include="HeuristicLabCedmaServerPlugin.cs" />
81    <Compile Include="Properties\AssemblyInfo.cs" />
82    <Compile Include="ServerForm.cs">
83      <SubType>Form</SubType>
84    </Compile>
85    <Compile Include="ServerForm.designer.cs">
86      <DependentUpon>ServerForm.cs</DependentUpon>
87    </Compile>
88  </ItemGroup>
89  <ItemGroup>
90    <ProjectReference Include="..\HeuristicLab.CEDMA.Core\HeuristicLab.CEDMA.Core.csproj">
91      <Project>{C27DDF6C-84DF-45EF-B82F-57A28DD51166}</Project>
92      <Name>HeuristicLab.CEDMA.Core</Name>
93    </ProjectReference>
94    <ProjectReference Include="..\HeuristicLab.CEDMA.DB.Interfaces\HeuristicLab.CEDMA.DB.Interfaces.csproj">
95      <Project>{4F9BB789-D561-436B-B226-2BF44B7D0804}</Project>
96      <Name>HeuristicLab.CEDMA.DB.Interfaces</Name>
97    </ProjectReference>
98    <ProjectReference Include="..\HeuristicLab.CEDMA.DB\HeuristicLab.CEDMA.DB.csproj">
99      <Project>{B3D6D8D9-2B1F-47EC-9C73-77FAECF87310}</Project>
100      <Name>HeuristicLab.CEDMA.DB</Name>
101    </ProjectReference>
102    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
103      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
104      <Name>HeuristicLab.Core</Name>
105    </ProjectReference>
106    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
107      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
108      <Name>HeuristicLab.Data</Name>
109    </ProjectReference>
110    <ProjectReference Include="..\HeuristicLab.Grid\HeuristicLab.Grid.csproj">
111      <Project>{545CE756-98D8-423B-AC2E-6E7D70926E5C}</Project>
112      <Name>HeuristicLab.Grid</Name>
113    </ProjectReference>
114    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
115      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
116      <Name>HeuristicLab.Operators</Name>
117    </ProjectReference>
118    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
119      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
120      <Name>HeuristicLab.PluginInfrastructure</Name>
121    </ProjectReference>
122  </ItemGroup>
123  <ItemGroup>
124    <EmbeddedResource Include="ServerForm.resx">
125      <DependentUpon>ServerForm.cs</DependentUpon>
126      <SubType>Designer</SubType>
127    </EmbeddedResource>
128  </ItemGroup>
129  <ItemGroup>
130    <None Include="HeuristicLab.snk" />
131  </ItemGroup>
132  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
133  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
134       Other similar extension points exist, see Microsoft.Common.targets.
135  <Target Name="BeforeBuild">
136  </Target>
137  <Target Name="AfterBuild">
138  </Target>
139  -->
140  <PropertyGroup>
141    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
142set ProjectDir=$(ProjectDir)
143set SolutionDir=$(SolutionDir)
144set Outdir=$(Outdir)
145
146call PreBuildEvent.cmd</PreBuildEvent>
147  </PropertyGroup>
148</Project>
Note: See TracBrowser for help on using the repository browser.