Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2886 added utility console program for clustering of expressions

File size: 3.6 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.Common-3.3">
41      <HintPath>..\..\..\trunk\bin\HeuristicLab.Common-3.3.dll</HintPath>
42    </Reference>
43    <Reference Include="HeuristicLab.Problems.DataAnalysis-3.4">
44      <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath>
45    </Reference>
46    <Reference Include="System" />
47    <Reference Include="System.Core" />
48    <Reference Include="System.Xml.Linq" />
49    <Reference Include="System.Data.DataSetExtensions" />
50    <Reference Include="Microsoft.CSharp" />
51    <Reference Include="System.Data" />
52    <Reference Include="System.Net.Http" />
53    <Reference Include="System.Xml" />
54  </ItemGroup>
55  <ItemGroup>
56    <Compile Include="Flann.cs" />
57    <Compile Include="Program.cs" />
58    <Compile Include="Properties\AssemblyInfo.cs" />
59  </ItemGroup>
60  <ItemGroup>
61    <None Include="App.config" />
62  </ItemGroup>
63  <ItemGroup>
64    <Content Include="flann-1.7.1.dll">
65      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
66    </Content>
67    <Content Include="msvcp100.dll">
68      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
69    </Content>
70    <Content Include="msvcr100.dll">
71      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
72    </Content>
73  </ItemGroup>
74  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
75  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
76       Other similar extension points exist, see Microsoft.Common.targets.
77  <Target Name="BeforeBuild">
78  </Target>
79  <Target Name="AfterBuild">
80  </Target>
81  -->
82</Project>
Note: See TracBrowser for help on using the repository browser.