Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GpPluginsRefactoringBranch/HeuristicLab.Communication.Data/HeuristicLab.Communication.Data.csproj @ 643

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

created a branch for #177 restructuring of GP plugins

File size: 9.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.21022</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{14E1C3E3-2496-436A-AE00-09F7B81DB15B}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Communication.Data</RootNamespace>
12    <AssemblyName>HeuristicLab.Communication.Data-3.2</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <StartupObject>
16    </StartupObject>
17    <SignAssembly>true</SignAssembly>
18    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
19    <PublishUrl>publish\</PublishUrl>
20    <Install>true</Install>
21    <InstallFrom>Disk</InstallFrom>
22    <UpdateEnabled>false</UpdateEnabled>
23    <UpdateMode>Foreground</UpdateMode>
24    <UpdateInterval>7</UpdateInterval>
25    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
26    <UpdatePeriodically>false</UpdatePeriodically>
27    <UpdateRequired>false</UpdateRequired>
28    <MapFileExtensions>true</MapFileExtensions>
29    <ApplicationRevision>0</ApplicationRevision>
30    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
31    <IsWebBootstrapper>false</IsWebBootstrapper>
32    <UseApplicationTrust>false</UseApplicationTrust>
33    <BootstrapperEnabled>true</BootstrapperEnabled>
34  </PropertyGroup>
35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
36    <DebugSymbols>true</DebugSymbols>
37    <DebugType>full</DebugType>
38    <Optimize>false</Optimize>
39    <OutputPath>bin\Debug\</OutputPath>
40    <DefineConstants>DEBUG;TRACE</DefineConstants>
41    <ErrorReport>prompt</ErrorReport>
42    <WarningLevel>4</WarningLevel>
43  </PropertyGroup>
44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
45    <DebugType>pdbonly</DebugType>
46    <Optimize>true</Optimize>
47    <OutputPath>bin\Release\</OutputPath>
48    <DefineConstants>TRACE</DefineConstants>
49    <ErrorReport>prompt</ErrorReport>
50    <WarningLevel>4</WarningLevel>
51  </PropertyGroup>
52  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
53    <DebugSymbols>true</DebugSymbols>
54    <OutputPath>bin\x86\Debug\</OutputPath>
55    <DefineConstants>DEBUG;TRACE</DefineConstants>
56    <DebugType>full</DebugType>
57    <PlatformTarget>x86</PlatformTarget>
58    <ErrorReport>prompt</ErrorReport>
59  </PropertyGroup>
60  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
61    <OutputPath>bin\x86\Release\</OutputPath>
62    <DefineConstants>TRACE</DefineConstants>
63    <Optimize>true</Optimize>
64    <DebugType>pdbonly</DebugType>
65    <PlatformTarget>x86</PlatformTarget>
66    <ErrorReport>prompt</ErrorReport>
67  </PropertyGroup>
68  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
69  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
70       Other similar extension points exist, see Microsoft.Common.targets.
71  <Target Name="BeforeBuild">
72  </Target>
73  <Target Name="AfterBuild">
74  </Target>
75  -->
76  <ItemGroup>
77    <Compile Include="DummyDriverConfiguration.cs" />
78    <Compile Include="HeuristicLabCommunicationDataPlugin.cs" />
79    <Compile Include="IDataStream.cs" />
80    <Compile Include="IDriverConfiguration.cs" />
81    <Compile Include="IObjectStream.cs" />
82    <Compile Include="LocalProcessDriverConfiguration.cs" />
83    <Compile Include="LocalProcessDriverConfigurationView.cs">
84      <SubType>UserControl</SubType>
85    </Compile>
86    <Compile Include="LocalProcessDriverConfigurationView.designer.cs">
87      <DependentUpon>LocalProcessDriverConfigurationView.cs</DependentUpon>
88    </Compile>
89    <Compile Include="OdbcDatabaseDriverConfiguration.cs" />
90    <Compile Include="OdbcDatabaseDriverConfigurationView.cs">
91      <SubType>UserControl</SubType>
92    </Compile>
93    <Compile Include="OdbcDatabaseDriverConfigurationView.designer.cs">
94      <DependentUpon>OdbcDatabaseDriverConfigurationView.cs</DependentUpon>
95    </Compile>
96    <Compile Include="ProcessData.cs" />
97    <Compile Include="Properties\AssemblyInfo.cs" />
98    <Compile Include="Protocol.cs" />
99    <Compile Include="ProtocolEditor.cs">
100      <SubType>UserControl</SubType>
101    </Compile>
102    <Compile Include="ProtocolEditor.Designer.cs">
103      <DependentUpon>ProtocolEditor.cs</DependentUpon>
104    </Compile>
105    <Compile Include="ProtocolState.cs" />
106    <Compile Include="ProtocolStateView.cs">
107      <SubType>UserControl</SubType>
108    </Compile>
109    <Compile Include="ProtocolStateView.Designer.cs">
110      <DependentUpon>ProtocolStateView.cs</DependentUpon>
111    </Compile>
112    <Compile Include="SocketData.cs" />
113    <Compile Include="StateTransition.cs" />
114    <Compile Include="StateTransitionView.cs">
115      <SubType>UserControl</SubType>
116    </Compile>
117    <Compile Include="StateTransitionView.Designer.cs">
118      <DependentUpon>StateTransitionView.cs</DependentUpon>
119    </Compile>
120    <Compile Include="TcpNetworkDriverConfiguration.cs" />
121    <Compile Include="TcpNetworkDriverConfigurationView.cs">
122      <SubType>UserControl</SubType>
123    </Compile>
124    <Compile Include="TcpNetworkDriverConfigurationView.designer.cs">
125      <DependentUpon>TcpNetworkDriverConfigurationView.cs</DependentUpon>
126    </Compile>
127  </ItemGroup>
128  <ItemGroup>
129    <EmbeddedResource Include="LocalProcessDriverConfigurationView.resx">
130      <DependentUpon>LocalProcessDriverConfigurationView.cs</DependentUpon>
131      <SubType>Designer</SubType>
132    </EmbeddedResource>
133    <EmbeddedResource Include="OdbcDatabaseDriverConfigurationView.resx">
134      <DependentUpon>OdbcDatabaseDriverConfigurationView.cs</DependentUpon>
135      <SubType>Designer</SubType>
136    </EmbeddedResource>
137    <EmbeddedResource Include="ProtocolEditor.resx">
138      <DependentUpon>ProtocolEditor.cs</DependentUpon>
139      <SubType>Designer</SubType>
140    </EmbeddedResource>
141    <EmbeddedResource Include="ProtocolStateView.resx">
142      <DependentUpon>ProtocolStateView.cs</DependentUpon>
143      <SubType>Designer</SubType>
144    </EmbeddedResource>
145    <EmbeddedResource Include="StateTransitionView.resx">
146      <DependentUpon>StateTransitionView.cs</DependentUpon>
147      <SubType>Designer</SubType>
148    </EmbeddedResource>
149    <EmbeddedResource Include="TcpNetworkDriverConfigurationView.resx">
150      <DependentUpon>TcpNetworkDriverConfigurationView.cs</DependentUpon>
151      <SubType>Designer</SubType>
152    </EmbeddedResource>
153  </ItemGroup>
154  <ItemGroup>
155    <Reference Include="System" />
156    <Reference Include="System.Data" />
157    <Reference Include="System.Drawing" />
158    <Reference Include="System.Windows.Forms" />
159    <Reference Include="System.XML" />
160  </ItemGroup>
161  <ItemGroup>
162    <None Include="HeuristicLab.snk" />
163  </ItemGroup>
164  <ItemGroup>
165    <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
166      <Visible>False</Visible>
167      <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
168      <Install>false</Install>
169    </BootstrapperPackage>
170    <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
171      <Visible>False</Visible>
172      <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
173      <Install>false</Install>
174    </BootstrapperPackage>
175    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
176      <Visible>False</Visible>
177      <ProductName>.NET Framework 3.5</ProductName>
178      <Install>true</Install>
179    </BootstrapperPackage>
180    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
181      <Visible>False</Visible>
182      <ProductName>Windows Installer 3.1</ProductName>
183      <Install>true</Install>
184    </BootstrapperPackage>
185  </ItemGroup>
186  <PropertyGroup>
187    <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent>
188    <PostBuildEvent>
189    </PostBuildEvent>
190  </PropertyGroup>
191  <ItemGroup>
192    <ProjectReference Include="..\HeuristicLab.Constraints\HeuristicLab.Constraints.csproj">
193      <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project>
194      <Name>HeuristicLab.Constraints</Name>
195    </ProjectReference>
196    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
197      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
198      <Name>HeuristicLab.Core</Name>
199    </ProjectReference>
200    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
201      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
202      <Name>HeuristicLab.Data</Name>
203    </ProjectReference>
204    <ProjectReference Include="..\HeuristicLab.Operators.Programmable\HeuristicLab.Operators.Programmable.csproj">
205      <Project>{E3CCBFC6-900C-41B6-AFB8-6646DB097435}</Project>
206      <Name>HeuristicLab.Operators.Programmable</Name>
207    </ProjectReference>
208    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
209      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
210      <Name>HeuristicLab.PluginInfrastructure</Name>
211    </ProjectReference>
212  </ItemGroup>
213</Project>
Note: See TracBrowser for help on using the repository browser.