Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ES/HeuristicLab.ES.csproj @ 677

Last change on this file since 677 was 582, checked in by swagner, 16 years ago

Added major and minor version number to assembly names (#274)

File size: 6.6 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>{2E6112A7-3A94-406D-A28C-38AC2D324DCA}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.ES</RootNamespace>
12    <AssemblyName>HeuristicLab.ES-3.2</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</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    <DocumentationFile>bin\Release\HeuristicLab.ES-3.2.XML</DocumentationFile>
35  </PropertyGroup>
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>
47    <DocumentationFile>bin\Release\HeuristicLab.ES-3.2.XML</DocumentationFile>
48    <Optimize>true</Optimize>
49    <DebugType>pdbonly</DebugType>
50    <PlatformTarget>x86</PlatformTarget>
51    <ErrorReport>prompt</ErrorReport>
52  </PropertyGroup>
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.Windows.Forms" />
60    <Reference Include="System.Xml.Linq">
61      <RequiredTargetFramework>3.5</RequiredTargetFramework>
62    </Reference>
63    <Reference Include="System.Data.DataSetExtensions">
64      <RequiredTargetFramework>3.5</RequiredTargetFramework>
65    </Reference>
66    <Reference Include="System.Data" />
67    <Reference Include="System.Xml" />
68  </ItemGroup>
69  <ItemGroup>
70    <Compile Include="ES.cs" />
71    <Compile Include="ESRandomSelector.cs" />
72    <Compile Include="HeuristicLabESPlugin.cs" />
73    <Compile Include="ESEditor.cs">
74      <SubType>UserControl</SubType>
75    </Compile>
76    <Compile Include="ESEditor.Designer.cs">
77      <DependentUpon>ESEditor.cs</DependentUpon>
78    </Compile>
79    <Compile Include="Properties\AssemblyInfo.cs" />
80    <Compile Include="SelfAdaptiveMutationStrengthAdjuster.cs" />
81    <Compile Include="VariableStrengthRepeatingManipulator.cs" />
82  </ItemGroup>
83  <ItemGroup>
84    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
85      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
86      <Name>HeuristicLab.Core</Name>
87    </ProjectReference>
88    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
89      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
90      <Name>HeuristicLab.Data</Name>
91    </ProjectReference>
92    <ProjectReference Include="..\HeuristicLab.Evolutionary\HeuristicLab.Evolutionary.csproj">
93      <Project>{F5614C53-153C-4A37-A608-121E1C087F07}</Project>
94      <Name>HeuristicLab.Evolutionary</Name>
95    </ProjectReference>
96    <ProjectReference Include="..\HeuristicLab.Logging\HeuristicLab.Logging.csproj">
97      <Project>{4095C92C-5A4C-44BC-9963-5F384CF5CC3F}</Project>
98      <Name>HeuristicLab.Logging</Name>
99    </ProjectReference>
100    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
101      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
102      <Name>HeuristicLab.Operators</Name>
103    </ProjectReference>
104    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
105      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
106      <Name>HeuristicLab.PluginInfrastructure</Name>
107    </ProjectReference>
108    <ProjectReference Include="..\HeuristicLab.Random\HeuristicLab.Random.csproj">
109      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
110      <Name>HeuristicLab.Random</Name>
111    </ProjectReference>
112    <ProjectReference Include="..\HeuristicLab.Selection.OffspringSelection\HeuristicLab.Selection.OffspringSelection.csproj">
113      <Project>{205898D3-2717-4686-AF17-52409B7EC0C6}</Project>
114      <Name>HeuristicLab.Selection.OffspringSelection</Name>
115    </ProjectReference>
116    <ProjectReference Include="..\HeuristicLab.Selection\HeuristicLab.Selection.csproj">
117      <Project>{F7CF0571-25CB-43D5-8443-0843A1E2861A}</Project>
118      <Name>HeuristicLab.Selection</Name>
119    </ProjectReference>
120    <ProjectReference Include="..\HeuristicLab.SequentialEngine\HeuristicLab.SequentialEngine.csproj">
121      <Project>{B4BE8E53-BA06-4237-9A01-24255F880201}</Project>
122      <Name>HeuristicLab.SequentialEngine</Name>
123    </ProjectReference>
124  </ItemGroup>
125  <ItemGroup>
126    <None Include="HeuristicLab.snk" />
127    <None Include="Properties\AssemblyInfo.frame" />
128  </ItemGroup>
129  <ItemGroup>
130    <EmbeddedResource Include="ESEditor.resx">
131      <DependentUpon>ESEditor.cs</DependentUpon>
132      <SubType>Designer</SubType>
133    </EmbeddedResource>
134  </ItemGroup>
135  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
136  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
137       Other similar extension points exist, see Microsoft.Common.targets.
138  <Target Name="BeforeBuild">
139  </Target>
140  <Target Name="AfterBuild">
141  </Target>
142  -->
143  <PropertyGroup>
144    <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent>
145  </PropertyGroup>
146</Project>
Note: See TracBrowser for help on using the repository browser.