[644] | 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>
|
---|
[698] | 6 | <ProductVersion>9.0.30729</ProductVersion>
|
---|
[644] | 7 | <SchemaVersion>2.0</SchemaVersion>
|
---|
[645] | 8 | <ProjectGuid>{1F1CF3ED-374C-4288-995B-93F6B872F571}</ProjectGuid>
|
---|
[644] | 9 | <OutputType>Library</OutputType>
|
---|
| 10 | <AppDesignerFolder>Properties</AppDesignerFolder>
|
---|
| 11 | <RootNamespace>HeuristicLab.GP</RootNamespace>
|
---|
[1290] | 12 | <AssemblyName>HeuristicLab.GP-3.3</AssemblyName>
|
---|
[644] | 13 | <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
---|
| 14 | <FileAlignment>512</FileAlignment>
|
---|
[645] | 15 | <SignAssembly>true</SignAssembly>
|
---|
| 16 | <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
|
---|
[644] | 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>
|
---|
[651] | 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>
|
---|
[1474] | 51 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
|
---|
| 52 | <DebugSymbols>true</DebugSymbols>
|
---|
| 53 | <OutputPath>bin\x64\Debug\</OutputPath>
|
---|
| 54 | <DefineConstants>DEBUG;TRACE</DefineConstants>
|
---|
| 55 | <DebugType>full</DebugType>
|
---|
| 56 | <PlatformTarget>x64</PlatformTarget>
|
---|
| 57 | <ErrorReport>prompt</ErrorReport>
|
---|
| 58 | </PropertyGroup>
|
---|
| 59 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
|
---|
| 60 | <OutputPath>bin\x64\Release\</OutputPath>
|
---|
| 61 | <DefineConstants>TRACE</DefineConstants>
|
---|
| 62 | <Optimize>true</Optimize>
|
---|
| 63 | <DebugType>pdbonly</DebugType>
|
---|
| 64 | <PlatformTarget>x64</PlatformTarget>
|
---|
| 65 | <ErrorReport>prompt</ErrorReport>
|
---|
| 66 | </PropertyGroup>
|
---|
[644] | 67 | <ItemGroup>
|
---|
| 68 | <Reference Include="System" />
|
---|
| 69 | <Reference Include="System.Core">
|
---|
| 70 | <RequiredTargetFramework>3.5</RequiredTargetFramework>
|
---|
| 71 | </Reference>
|
---|
[645] | 72 | <Reference Include="System.Drawing" />
|
---|
| 73 | <Reference Include="System.Windows.Forms" />
|
---|
[644] | 74 | <Reference Include="System.Xml.Linq">
|
---|
| 75 | <RequiredTargetFramework>3.5</RequiredTargetFramework>
|
---|
| 76 | </Reference>
|
---|
| 77 | <Reference Include="System.Data.DataSetExtensions">
|
---|
| 78 | <RequiredTargetFramework>3.5</RequiredTargetFramework>
|
---|
| 79 | </Reference>
|
---|
| 80 | <Reference Include="System.Data" />
|
---|
| 81 | <Reference Include="System.Xml" />
|
---|
| 82 | </ItemGroup>
|
---|
| 83 | <ItemGroup>
|
---|
[2222] | 84 | <Compile Include="BaseClasses\BinaryFunction.cs" />
|
---|
[2701] | 85 | <Compile Include="BaseClasses\Function.cs" />
|
---|
[2222] | 86 | <Compile Include="BaseClasses\FunctionLibraryInjectorBase.cs" />
|
---|
[2701] | 87 | <Compile Include="BaseClasses\FunctionTree.cs" />
|
---|
[2222] | 88 | <Compile Include="BaseClasses\TerminalTreeNode.cs" />
|
---|
| 89 | <Compile Include="BaseClasses\Terminal.cs" />
|
---|
| 90 | <Compile Include="BaseClasses\UnaryFunction.cs" />
|
---|
[2750] | 91 | <None Include="HeuristicLabGPPlugin.cs.frame" />
|
---|
[2728] | 92 | <Compile Include="FunctionLibraryInjectorView.cs">
|
---|
| 93 | <SubType>UserControl</SubType>
|
---|
| 94 | </Compile>
|
---|
| 95 | <Compile Include="FunctionLibraryInjectorView.Designer.cs">
|
---|
| 96 | <DependentUpon>FunctionLibraryInjectorView.cs</DependentUpon>
|
---|
| 97 | </Compile>
|
---|
[2701] | 98 | <Compile Include="FunctionView.cs">
|
---|
| 99 | <SubType>UserControl</SubType>
|
---|
| 100 | </Compile>
|
---|
| 101 | <Compile Include="FunctionView.Designer.cs">
|
---|
| 102 | <DependentUpon>FunctionView.cs</DependentUpon>
|
---|
| 103 | </Compile>
|
---|
[2328] | 104 | <Compile Include="GeneticProgrammingModelView.cs">
|
---|
| 105 | <SubType>UserControl</SubType>
|
---|
| 106 | </Compile>
|
---|
| 107 | <Compile Include="GeneticProgrammingModelView.Designer.cs">
|
---|
| 108 | <DependentUpon>GeneticProgrammingModelView.cs</DependentUpon>
|
---|
| 109 | </Compile>
|
---|
[2222] | 110 | <Compile Include="FunctionLibrary.cs" />
|
---|
| 111 | <Compile Include="FunctionLibraryEditor.cs">
|
---|
[645] | 112 | <SubType>UserControl</SubType>
|
---|
| 113 | </Compile>
|
---|
[2222] | 114 | <Compile Include="FunctionLibraryEditor.Designer.cs">
|
---|
| 115 | <DependentUpon>FunctionLibraryEditor.cs</DependentUpon>
|
---|
[645] | 116 | </Compile>
|
---|
[2222] | 117 | <Compile Include="FunctionTreeView.cs">
|
---|
[645] | 118 | <SubType>UserControl</SubType>
|
---|
| 119 | </Compile>
|
---|
[2222] | 120 | <Compile Include="FunctionTreeView.Designer.cs">
|
---|
| 121 | <DependentUpon>FunctionTreeView.cs</DependentUpon>
|
---|
[645] | 122 | </Compile>
|
---|
[2222] | 123 | <Compile Include="GeneticProgrammingModel.cs" />
|
---|
[645] | 124 | <Compile Include="HeuristicLabGPPlugin.cs" />
|
---|
[644] | 125 | <Compile Include="Properties\AssemblyInfo.cs" />
|
---|
[645] | 126 | <Compile Include="TreeGardener.cs" />
|
---|
[644] | 127 | </ItemGroup>
|
---|
[645] | 128 | <ItemGroup>
|
---|
[1534] | 129 | <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj">
|
---|
[645] | 130 | <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
|
---|
[1534] | 131 | <Name>HeuristicLab.Core-3.2</Name>
|
---|
[645] | 132 | </ProjectReference>
|
---|
[2222] | 133 | <ProjectReference Include="..\..\HeuristicLab.GP.Interfaces\3.3\HeuristicLab.GP.Interfaces-3.3.csproj">
|
---|
| 134 | <Project>{924B6BEA-9A99-40FE-9334-5C01E8D540EC}</Project>
|
---|
| 135 | <Name>HeuristicLab.GP.Interfaces-3.3</Name>
|
---|
[645] | 136 | </ProjectReference>
|
---|
[1534] | 137 | <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
|
---|
[645] | 138 | <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
|
---|
| 139 | <Name>HeuristicLab.PluginInfrastructure</Name>
|
---|
| 140 | </ProjectReference>
|
---|
[1534] | 141 | <ProjectReference Include="..\..\HeuristicLab.Random\3.2\HeuristicLab.Random-3.2.csproj">
|
---|
[645] | 142 | <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
|
---|
[1534] | 143 | <Name>HeuristicLab.Random-3.2</Name>
|
---|
[645] | 144 | </ProjectReference>
|
---|
| 145 | </ItemGroup>
|
---|
| 146 | <ItemGroup>
|
---|
[2728] | 147 | <EmbeddedResource Include="FunctionLibraryInjectorView.resx">
|
---|
| 148 | <DependentUpon>FunctionLibraryInjectorView.cs</DependentUpon>
|
---|
| 149 | </EmbeddedResource>
|
---|
[2701] | 150 | <EmbeddedResource Include="FunctionView.resx">
|
---|
| 151 | <DependentUpon>FunctionView.cs</DependentUpon>
|
---|
| 152 | </EmbeddedResource>
|
---|
[2328] | 153 | <EmbeddedResource Include="GeneticProgrammingModelView.resx">
|
---|
| 154 | <DependentUpon>GeneticProgrammingModelView.cs</DependentUpon>
|
---|
| 155 | </EmbeddedResource>
|
---|
[2222] | 156 | <EmbeddedResource Include="FunctionLibraryEditor.resx">
|
---|
| 157 | <DependentUpon>FunctionLibraryEditor.cs</DependentUpon>
|
---|
[645] | 158 | </EmbeddedResource>
|
---|
[2222] | 159 | <EmbeddedResource Include="FunctionTreeView.resx">
|
---|
| 160 | <DependentUpon>FunctionTreeView.cs</DependentUpon>
|
---|
[645] | 161 | </EmbeddedResource>
|
---|
| 162 | </ItemGroup>
|
---|
| 163 | <ItemGroup>
|
---|
| 164 | <None Include="HeuristicLab.snk" />
|
---|
[651] | 165 | <None Include="Properties\AssemblyInfo.frame" />
|
---|
[645] | 166 | </ItemGroup>
|
---|
[644] | 167 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
---|
| 168 | <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
---|
| 169 | Other similar extension points exist, see Microsoft.Common.targets.
|
---|
| 170 | <Target Name="BeforeBuild">
|
---|
| 171 | </Target>
|
---|
| 172 | <Target Name="AfterBuild">
|
---|
| 173 | </Target>
|
---|
| 174 | -->
|
---|
[651] | 175 | <PropertyGroup>
|
---|
[852] | 176 | <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
|
---|
| 177 | set ProjectDir=$(ProjectDir)
|
---|
| 178 | set SolutionDir=$(SolutionDir)
|
---|
| 179 | set Outdir=$(Outdir)
|
---|
| 180 |
|
---|
[2750] | 181 | call PreBuildEvent.cmd
|
---|
| 182 | SubWCRev "%25ProjectDir%25/" "%25ProjectDir%25/HeuristicLabGPPlugin.cs.frame" "%25ProjectDir%25/HeuristicLabGPPlugin.cs"</PreBuildEvent>
|
---|
[651] | 183 | </PropertyGroup>
|
---|
[644] | 184 | </Project> |
---|