Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2886_SymRegGrammarEnumeration/ExpressionClustering/ExpressionClustering.csproj @ 15842

Last change on this file since 15842 was 15842, checked in by gkronber, 6 years ago

#2886: added clustering of functions and output of clusters, fixed bug in evaluation

File size: 5.7 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>{956C4ADE-F86D-4DCC-BE2B-BA8C5BE4851B}</ProjectGuid>
8    <OutputType>Exe</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>ExpressionClustering</RootNamespace>
11    <AssemblyName>ExpressionClustering</AssemblyName>
12    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <PlatformTarget>x64</PlatformTarget>
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <OutputPath>bin\Debug\</OutputPath>
22    <DefineConstants>DEBUG;TRACE</DefineConstants>
23    <ErrorReport>prompt</ErrorReport>
24    <WarningLevel>4</WarningLevel>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <PlatformTarget>AnyCPU</PlatformTarget>
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>
35  <ItemGroup>
36    <Reference Include="ALGLIB-3.7.0, Version=3.7.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
37      <SpecificVersion>False</SpecificVersion>
38      <HintPath>..\..\..\trunk\bin\ALGLIB-3.7.0.dll</HintPath>
39    </Reference>
40    <Reference Include="HeuristicLab.Analysis-3.3">
41      <HintPath>..\..\..\trunk\bin\HeuristicLab.Analysis-3.3.dll</HintPath>
42    </Reference>
43    <Reference Include="HeuristicLab.Analysis.Views-3.3">
44      <HintPath>..\..\..\trunk\bin\HeuristicLab.Analysis.Views-3.3.dll</HintPath>
45    </Reference>
46    <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
47      <SpecificVersion>False</SpecificVersion>
48      <HintPath>..\..\..\trunk\bin\HeuristicLab.Collections-3.3.dll</HintPath>
49    </Reference>
50    <Reference Include="HeuristicLab.Common-3.3">
51      <HintPath>..\..\..\trunk\bin\HeuristicLab.Common-3.3.dll</HintPath>
52    </Reference>
53    <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec" />
54    <Reference Include="HeuristicLab.Core.Views-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
55      <SpecificVersion>False</SpecificVersion>
56      <HintPath>..\..\..\trunk\bin\HeuristicLab.Core.Views-3.3.dll</HintPath>
57    </Reference>
58    <Reference Include="HeuristicLab.MainForm-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
59      <SpecificVersion>False</SpecificVersion>
60      <HintPath>..\..\..\trunk\bin\HeuristicLab.MainForm-3.3.dll</HintPath>
61    </Reference>
62    <Reference Include="HeuristicLab.MainForm.WindowsForms-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
63      <SpecificVersion>False</SpecificVersion>
64      <HintPath>..\..\..\trunk\bin\HeuristicLab.MainForm.WindowsForms-3.3.dll</HintPath>
65    </Reference>
66    <Reference Include="HeuristicLab.Problems.DataAnalysis-3.4">
67      <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath>
68    </Reference>
69    <Reference Include="HeuristicLab.Visualization.ChartControlsExtensions-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
70      <SpecificVersion>False</SpecificVersion>
71      <HintPath>..\..\..\trunk\bin\HeuristicLab.Visualization.ChartControlsExtensions-3.3.dll</HintPath>
72    </Reference>
73    <Reference Include="System" />
74    <Reference Include="System.Core" />
75    <Reference Include="System.Drawing" />
76    <Reference Include="System.Windows" />
77    <Reference Include="System.Windows.Forms" />
78    <Reference Include="System.Xml.Linq" />
79    <Reference Include="System.Data.DataSetExtensions" />
80    <Reference Include="Microsoft.CSharp" />
81    <Reference Include="System.Data" />
82    <Reference Include="System.Net.Http" />
83    <Reference Include="System.Xml" />
84  </ItemGroup>
85  <ItemGroup>
86    <Compile Include="Flann.cs" />
87    <Compile Include="Program.cs" />
88    <Compile Include="Properties\AssemblyInfo.cs" />
89  </ItemGroup>
90  <ItemGroup>
91    <None Include="App.config" />
92  </ItemGroup>
93  <ItemGroup>
94    <Content Include="flann-1.7.1.dll">
95      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
96    </Content>
97    <Content Include="msvcp100.dll">
98      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
99    </Content>
100    <Content Include="msvcr100.dll">
101      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
102    </Content>
103  </ItemGroup>
104  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
105  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
106       Other similar extension points exist, see Microsoft.Common.targets.
107  <Target Name="BeforeBuild">
108  </Target>
109  <Target Name="AfterBuild">
110  </Target>
111  -->
112</Project>
Note: See TracBrowser for help on using the repository browser.