Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/HeuristicLab.Optimization.Networks-3.3.csproj @ 11463

Last change on this file since 11463 was 11463, checked in by swagner, 10 years ago

#2205: Worked on optimization networks

File size: 8.3 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4  <PropertyGroup>
5    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7    <ProjectGuid>{7CF51332-0E37-447C-8017-82A258C59EF2}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Optimization.Networks</RootNamespace>
11    <AssemblyName>HeuristicLab.Optimization.Networks-3.3</AssemblyName>
12    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <TargetFrameworkProfile />
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>..\..\bin\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>bin\Release\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <PropertyGroup>
34    <SignAssembly>true</SignAssembly>
35  </PropertyGroup>
36  <PropertyGroup>
37    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
38  </PropertyGroup>
39  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
40    <DebugSymbols>true</DebugSymbols>
41    <OutputPath>bin\x64\Debug\</OutputPath>
42    <DefineConstants>DEBUG;TRACE</DefineConstants>
43    <DebugType>full</DebugType>
44    <PlatformTarget>x64</PlatformTarget>
45    <ErrorReport>prompt</ErrorReport>
46    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
47  </PropertyGroup>
48  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
49    <OutputPath>bin\x64\Release\</OutputPath>
50    <DefineConstants>TRACE</DefineConstants>
51    <Optimize>true</Optimize>
52    <DebugType>pdbonly</DebugType>
53    <PlatformTarget>x64</PlatformTarget>
54    <ErrorReport>prompt</ErrorReport>
55    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
56  </PropertyGroup>
57  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
58    <DebugSymbols>true</DebugSymbols>
59    <OutputPath>bin\x86\Debug\</OutputPath>
60    <DefineConstants>DEBUG;TRACE</DefineConstants>
61    <DebugType>full</DebugType>
62    <PlatformTarget>x86</PlatformTarget>
63    <ErrorReport>prompt</ErrorReport>
64    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
65  </PropertyGroup>
66  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
67    <OutputPath>bin\x86\Release\</OutputPath>
68    <DefineConstants>TRACE</DefineConstants>
69    <Optimize>true</Optimize>
70    <DebugType>pdbonly</DebugType>
71    <PlatformTarget>x86</PlatformTarget>
72    <ErrorReport>prompt</ErrorReport>
73    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
74  </PropertyGroup>
75  <ItemGroup>
76    <Reference Include="System" />
77    <Reference Include="System.Core" />
78    <Reference Include="System.Drawing" />
79    <Reference Include="System.Xml.Linq" />
80    <Reference Include="System.Data.DataSetExtensions" />
81    <Reference Include="Microsoft.CSharp" />
82    <Reference Include="System.Data" />
83    <Reference Include="System.Xml" />
84  </ItemGroup>
85  <ItemGroup>
86    <Compile Include="AlgorithmServiceNode.cs" />
87    <Compile Include="IAlgorithmServiceNode.cs" />
88    <Compile Include="IEntity.cs" />
89    <Compile Include="IClientPort.cs" />
90    <Compile Include="IClientServicePort.cs" />
91    <Compile Include="ServiceParameterType.cs" />
92    <Compile Include="IServiceParameter.cs" />
93    <Compile Include="IServicePort.cs" />
94    <Compile Include="IPort.cs" />
95    <Compile Include="IVariablesNode.cs" />
96    <Compile Include="Entity.cs" />
97    <Compile Include="ServiceParameterCollection.cs" />
98    <Compile Include="ServiceParameter.cs" />
99    <Compile Include="ClientServicePort.cs" />
100    <Compile Include="ClientPort.cs" />
101    <Compile Include="ServicePort.cs" />
102    <Compile Include="Port.cs" />
103    <Compile Include="MultiplierNode.cs" />
104    <Compile Include="VariablesNode.cs" />
105    <Compile Include="EventArgs.cs" />
106    <Compile Include="IInputOutputPort.cs" />
107    <Compile Include="IAlgorithmNode.cs" />
108    <Compile Include="InputOutputPort.cs" />
109    <Compile Include="IOutputInputPort.cs" />
110    <Compile Include="AlgorithmNode.cs" />
111    <Compile Include="OutputInputPort.cs" />
112    <Compile Include="OutputPort.cs" />
113    <Compile Include="IOutputPort.cs" />
114    <Compile Include="INetwork.cs" />
115    <Compile Include="IInputPort.cs" />
116    <Compile Include="IValuePort.cs" />
117    <Compile Include="INode.cs" />
118    <Compile Include="Network.cs" />
119    <Compile Include="InputPort.cs" />
120    <Compile Include="NodeCollection.cs" />
121    <Compile Include="PortCollection.cs" />
122    <Compile Include="ValuePort.cs" />
123    <Compile Include="Plugin.cs" />
124    <Compile Include="Properties\AssemblyInfo.cs" />
125    <Compile Include="Node.cs" />
126  </ItemGroup>
127  <ItemGroup>
128    <None Include="HeuristicLab.snk" />
129    <None Include="Plugin.cs.frame" />
130    <None Include="Properties\AssemblyInfo.cs.frame" />
131  </ItemGroup>
132  <ItemGroup>
133    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
134      <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project>
135      <Name>HeuristicLab.Collections-3.3</Name>
136    </ProjectReference>
137    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
138      <Project>{0e27a536-1c4a-4624-a65e-dc4f4f23e3e1}</Project>
139      <Name>HeuristicLab.Common.Resources-3.3</Name>
140    </ProjectReference>
141    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
142      <Project>{a9ad58b9-3ef9-4cc1-97e5-8d909039ff5c}</Project>
143      <Name>HeuristicLab.Common-3.3</Name>
144    </ProjectReference>
145    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
146      <Project>{c36bd924-a541-4a00-afa8-41701378ddc5}</Project>
147      <Name>HeuristicLab.Core-3.3</Name>
148    </ProjectReference>
149    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
150      <Project>{bbab9df5-5ef3-4ba8-ade9-b36e82114937}</Project>
151      <Name>HeuristicLab.Data-3.3</Name>
152    </ProjectReference>
153    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
154      <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>
155      <Name>HeuristicLab.Optimization-3.3</Name>
156    </ProjectReference>
157    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
158      <Project>{102bc7d3-0ef9-439c-8f6d-96ff0fdb8e1b}</Project>
159      <Name>HeuristicLab.Persistence-3.3</Name>
160    </ProjectReference>
161    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
162      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
163      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
164      <Private>False</Private>
165    </ProjectReference>
166  </ItemGroup>
167  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
168  <PropertyGroup>
169    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
170set ProjectDir=$(ProjectDir)
171set SolutionDir=$(SolutionDir)
172set Outdir=$(Outdir)
173
174call PreBuildEvent.cmd
175</PreBuildEvent>
176  </PropertyGroup>
177  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
178       Other similar extension points exist, see Microsoft.Common.targets.
179  <Target Name="BeforeBuild">
180  </Target>
181  <Target Name="AfterBuild">
182  </Target>
183  -->
184</Project>
Note: See TracBrowser for help on using the repository browser.