Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2704: Implement export of expressions as infix strings. Include missing AssemblyInfo.cs.frame file and set language version to C# 4.0.

File size: 4.5 KB
Line 
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    <LangVersion>4</LangVersion>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <ItemGroup>
35    <Reference Include="HeuristicLab.Common-3.3">
36      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
37      <Private>False</Private>
38    </Reference>
39    <Reference Include="HeuristicLab.Core-3.3">
40      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
41      <Private>False</Private>
42    </Reference>
43    <Reference Include="HeuristicLab.Data-3.3">
44      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
45      <Private>False</Private>
46    </Reference>
47    <Reference Include="HeuristicLab.Persistence-3.3">
48      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
49      <Private>False</Private>
50    </Reference>
51    <Reference Include="HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
52      <SpecificVersion>False</SpecificVersion>
53      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
54      <Private>False</Private>
55    </Reference>
56    <Reference Include="HeuristicLab.Problems.DataAnalysis-3.4">
57      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath>
58      <Private>False</Private>
59    </Reference>
60    <Reference Include="HeuristicLab.Random-3.3">
61      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
62      <Private>False</Private>
63    </Reference>
64    <Reference Include="System" />
65    <Reference Include="System.Core" />
66    <Reference Include="System.Xml.Linq" />
67    <Reference Include="System.Data.DataSetExtensions" />
68    <Reference Include="Microsoft.CSharp" />
69    <Reference Include="System.Data" />
70    <Reference Include="System.Net.Http" />
71    <Reference Include="System.Xml" />
72  </ItemGroup>
73  <ItemGroup>
74    <Compile Include="Expression.cs" />
75    <Compile Include="ExpressionEvaluator.cs" />
76    <Compile Include="ExpressionTemplate.cs" />
77    <Compile Include="Interfaces\IExpression.cs" />
78    <Compile Include="Plugin.cs" />
79  </ItemGroup>
80  <ItemGroup>
81    <None Include="Properties\AssemblyInfo.cs.frame" />
82  </ItemGroup>
83  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
84  <PropertyGroup>
85    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
86set ProjectDir=$(ProjectDir)
87set SolutionDir=$(SolutionDir)
88set Outdir=$(Outdir)
89
90call PreBuildEvent.cmd</PreBuildEvent>
91  </PropertyGroup>
92  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
93       Other similar extension points exist, see Microsoft.Common.targets.
94  <Target Name="BeforeBuild">
95  </Target>
96  <Target Name="AfterBuild">
97  </Target>
98  -->
99</Project>
Note: See TracBrowser for help on using the repository browser.