Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.ExpressionGenerator/HeuristicLab.ExpressionGenerator/3.4/HeuristicLab.ExpressionGenerator.csproj @ 14409

Last change on this file since 14409 was 14409, checked in by bburlacu, 7 years ago

#2704: Initial commit of HeuristicLab.ExpressionGenerator plugin. Note that the code depends on #2703 which should be merged first.

File size: 4.4 KB
RevLine 
[14409]1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="14.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>{78E3A433-C8CD-47CF-A5E4-33B568AF23BF}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.ExpressionGenerator</RootNamespace>
11    <AssemblyName>HeuristicLab.ExpressionGenerator-3.4</AssemblyName>
12    <TargetFrameworkVersion>v4.5</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>..\..\..\..\trunk\sources\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>..\..\..\..\trunk\sources\bin\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <ItemGroup>
34    <Reference Include="HeuristicLab.Common-3.3">
35      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
36      <Private>False</Private>
37    </Reference>
38    <Reference Include="HeuristicLab.Core-3.3">
39      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
40      <Private>False</Private>
41    </Reference>
42    <Reference Include="HeuristicLab.Data-3.3">
43      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
44      <Private>False</Private>
45    </Reference>
46    <Reference Include="HeuristicLab.Persistence-3.3">
47      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
48      <Private>False</Private>
49    </Reference>
50    <Reference Include="HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
51      <SpecificVersion>False</SpecificVersion>
52      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
53      <Private>False</Private>
54    </Reference>
55    <Reference Include="HeuristicLab.Problems.DataAnalysis-3.4">
56      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath>
57      <Private>False</Private>
58    </Reference>
59    <Reference Include="HeuristicLab.Random-3.3">
60      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
61      <Private>False</Private>
62    </Reference>
63    <Reference Include="System" />
64    <Reference Include="System.Core" />
65    <Reference Include="System.Xml.Linq" />
66    <Reference Include="System.Data.DataSetExtensions" />
67    <Reference Include="Microsoft.CSharp" />
68    <Reference Include="System.Data" />
69    <Reference Include="System.Net.Http" />
70    <Reference Include="System.Xml" />
71  </ItemGroup>
72  <ItemGroup>
73    <Compile Include="Expression.cs" />
74    <Compile Include="ExpressionEvaluator.cs" />
75    <Compile Include="ExpressionTemplate.cs" />
76    <Compile Include="Interfaces\IExpression.cs" />
77    <Compile Include="Plugin.cs" />
78    <Compile Include="Properties\AssemblyInfo.cs" />
79  </ItemGroup>
80  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
81  <PropertyGroup>
82    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
83set ProjectDir=$(ProjectDir)
84set SolutionDir=$(SolutionDir)
85call PreBuildEvent.cmd</PreBuildEvent>
86  </PropertyGroup>
87  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
88       Other similar extension points exist, see Microsoft.Common.targets.
89  <Target Name="BeforeBuild">
90  </Target>
91  <Target Name="AfterBuild">
92  </Target>
93  -->
94</Project>
Note: See TracBrowser for help on using the repository browser.