Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.1/sources/HeuristicLab.Communication.Operators/HeuristicLab.Communication.Operators.csproj @ 1204

Last change on this file since 1204 was 583, checked in by abeham, 16 years ago

Adding communication framework to branch 3.1 (ticket #278)

File size: 6.2 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>{6AEF1284-2428-4B01-B9D2-62C1FA7C2DE1}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Communication.Operators</RootNamespace>
12    <AssemblyName>HeuristicLab.Communication.Operators</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <StartupObject>
16    </StartupObject>
17    <SignAssembly>true</SignAssembly>
18    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
19  </PropertyGroup>
20  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21    <DebugSymbols>true</DebugSymbols>
22    <DebugType>full</DebugType>
23    <Optimize>false</Optimize>
24    <OutputPath>bin\Debug\</OutputPath>
25    <DefineConstants>DEBUG;TRACE</DefineConstants>
26    <ErrorReport>prompt</ErrorReport>
27    <WarningLevel>4</WarningLevel>
28  </PropertyGroup>
29  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30    <DebugType>pdbonly</DebugType>
31    <Optimize>true</Optimize>
32    <OutputPath>bin\Release\</OutputPath>
33    <DefineConstants>TRACE</DefineConstants>
34    <ErrorReport>prompt</ErrorReport>
35    <WarningLevel>4</WarningLevel>
36  </PropertyGroup>
37  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
38  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
39       Other similar extension points exist, see Microsoft.Common.targets.
40  <Target Name="BeforeBuild">
41  </Target>
42  <Target Name="AfterBuild">
43  </Target>
44  -->
45  <ItemGroup>
46    <Compile Include="CurrentStateConstraintChecker.cs" />
47    <Compile Include="CurrentStateInitializer.cs" />
48    <Compile Include="CurrentStateVariableInjector.cs" />
49    <Compile Include="DataStreamCommunicator.cs" />
50    <Compile Include="DataStreamFinisher.cs" />
51    <Compile Include="HeuristicLabCommunicationOperatorsPlugin.cs" />
52    <Compile Include="LocalProcessInitiator.cs" />
53    <Compile Include="Properties\AssemblyInfo.cs" />
54    <Compile Include="ProtocolInjector.cs" />
55    <Compile Include="ProtocolInjectorView.cs">
56      <SubType>UserControl</SubType>
57    </Compile>
58    <Compile Include="ProtocolInjectorView.designer.cs">
59      <DependentUpon>ProtocolInjectorView.cs</DependentUpon>
60    </Compile>
61    <Compile Include="SimpleReceiveItemDeserializer.cs" />
62    <Compile Include="SimpleSendItemSerializer.cs" />
63    <Compile Include="StateTransistor.cs" />
64    <Compile Include="SubscopeCurrentStateLooseDataCollector.cs" />
65    <Compile Include="SubscopeCurrentStateLooseDataDistributor.cs" />
66    <Compile Include="TcpNetworkInitiator.cs" />
67    <Compile Include="XMLConstrainedItemListDeserializer.cs" />
68    <Compile Include="XMLConstrainedItemListSerializer.cs" />
69  </ItemGroup>
70  <ItemGroup>
71    <Reference Include="HeuristicLab.Constraints, Version=3.1.0.579, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
72      <SpecificVersion>False</SpecificVersion>
73      <HintPath>..\HeuristicLab.Constraints\bin\Debug\HeuristicLab.Constraints.dll</HintPath>
74    </Reference>
75    <Reference Include="HeuristicLab.Core, Version=3.1.0.579, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
76      <SpecificVersion>False</SpecificVersion>
77      <HintPath>..\HeuristicLab.Core\bin\Debug\HeuristicLab.Core.dll</HintPath>
78    </Reference>
79    <Reference Include="HeuristicLab.Data, Version=3.1.0.579, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
80      <SpecificVersion>False</SpecificVersion>
81      <HintPath>..\HeuristicLab.Data\bin\Debug\HeuristicLab.Data.dll</HintPath>
82    </Reference>
83    <Reference Include="HeuristicLab.Operators, Version=3.1.0.579, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
84      <SpecificVersion>False</SpecificVersion>
85      <HintPath>..\HeuristicLab.Operators\bin\Debug\HeuristicLab.Operators.dll</HintPath>
86    </Reference>
87    <Reference Include="HeuristicLab.Operators.Programmable, Version=3.1.0.579, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
88      <SpecificVersion>False</SpecificVersion>
89      <HintPath>..\HeuristicLab.Operators.Programmable\bin\Debug\HeuristicLab.Operators.Programmable.dll</HintPath>
90    </Reference>
91    <Reference Include="HeuristicLab.Random, Version=3.1.0.579, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
92      <SpecificVersion>False</SpecificVersion>
93      <HintPath>..\HeuristicLab.Random\bin\Debug\HeuristicLab.Random.dll</HintPath>
94    </Reference>
95    <Reference Include="System" />
96    <Reference Include="System.Data" />
97    <Reference Include="System.Drawing" />
98    <Reference Include="System.Windows.Forms" />
99    <Reference Include="System.XML" />
100  </ItemGroup>
101  <ItemGroup>
102    <None Include="HeuristicLab.snk" />
103  </ItemGroup>
104  <ItemGroup>
105    <EmbeddedResource Include="ProtocolInjectorView.resx">
106      <DependentUpon>ProtocolInjectorView.cs</DependentUpon>
107      <SubType>Designer</SubType>
108    </EmbeddedResource>
109  </ItemGroup>
110  <PropertyGroup>
111    <PostBuildEvent>
112    </PostBuildEvent>
113    <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent>
114  </PropertyGroup>
115  <ItemGroup>
116    <ProjectReference Include="..\HeuristicLab.Communication.Data\HeuristicLab.Communication.Data.csproj">
117      <Project>{14E1C3E3-2496-436A-AE00-09F7B81DB15B}</Project>
118      <Name>HeuristicLab.Communication.Data</Name>
119    </ProjectReference>
120    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
121      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
122      <Name>HeuristicLab.PluginInfrastructure</Name>
123    </ProjectReference>
124  </ItemGroup>
125</Project>
Note: See TracBrowser for help on using the repository browser.