Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 14880 was 14880, checked in by gkronber, 7 years ago

#2704: added more expression templates

File size: 4.6 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>
[14480]24    <LangVersion>4</LangVersion>
[14409]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>
[14880]74    <Compile Include="Distributions.cs" />
[14409]75    <Compile Include="Expression.cs" />
76    <Compile Include="ExpressionEvaluator.cs" />
[14505]77    <Compile Include="ExpressionGenerator.cs" />
[14409]78    <Compile Include="ExpressionTemplate.cs" />
[14880]79    <Compile Include="Interfaces\IDistribution.cs" />
[14409]80    <Compile Include="Interfaces\IExpression.cs" />
81    <Compile Include="Plugin.cs" />
82  </ItemGroup>
[14480]83  <ItemGroup>
84    <None Include="Properties\AssemblyInfo.cs.frame" />
85  </ItemGroup>
[14409]86  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
87  <PropertyGroup>
88    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
89set ProjectDir=$(ProjectDir)
90set SolutionDir=$(SolutionDir)
[14480]91set Outdir=$(Outdir)
92
[14409]93call PreBuildEvent.cmd</PreBuildEvent>
94  </PropertyGroup>
95  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
96       Other similar extension points exist, see Microsoft.Common.targets.
97  <Target Name="BeforeBuild">
98  </Target>
99  <Target Name="AfterBuild">
100  </Target>
101  -->
102</Project>
Note: See TracBrowser for help on using the repository browser.