Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Analysis.AlgorithmBehavior/MIConvexHull/MIConvexHull.csproj @ 11526

Last change on this file since 11526 was 10060, checked in by ascheibe, 11 years ago

#1886

  • added point calculation from distance matrices
  • added convex hull algorithm based on LP (work in progress)
  • added unit tests
File size: 3.4 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{2337776D-7D0C-40AA-A439-C26C3CE24FAB}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>MIConvexHull</RootNamespace>
12    <AssemblyName>MIConvexHullPlugin</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</OutputPath>
21    <DefineConstants>DEBUG</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24    <DocumentationFile>bin\Debug\MIConvexHullPlugin.xml</DocumentationFile>
25    <UseVSHostingProcess>false</UseVSHostingProcess>
26    <PlatformTarget>AnyCPU</PlatformTarget>
27  </PropertyGroup>
28  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
29    <DebugSymbols>true</DebugSymbols>
30    <DebugType>full</DebugType>
31    <Optimize>false</Optimize>
32    <OutputPath>..\..\..\trunk\sources\bin\</OutputPath>
33    <DefineConstants>DEBUG;TRACE</DefineConstants>
34    <ErrorReport>prompt</ErrorReport>
35    <WarningLevel>4</WarningLevel>
36  </PropertyGroup>
37  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
38    <DebugType>pdbonly</DebugType>
39    <Optimize>true</Optimize>
40    <OutputPath>..\..\..\trunk\sources\bin\</OutputPath>
41    <DefineConstants>TRACE</DefineConstants>
42    <ErrorReport>prompt</ErrorReport>
43    <WarningLevel>4</WarningLevel>
44  </PropertyGroup>
45  <PropertyGroup>
46    <SignAssembly>true</SignAssembly>
47  </PropertyGroup>
48  <PropertyGroup>
49    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
50  </PropertyGroup>
51  <ItemGroup>
52    <Reference Include="System" />
53  </ItemGroup>
54  <ItemGroup>
55    <Compile Include="ConvexHull\Collections.cs" />
56    <Compile Include="ConvexHull\ConvexFace.cs" />
57    <Compile Include="ConvexHull\ConvexFaceInternal.cs" />
58    <Compile Include="ConvexHull\ConvexHull.cs" />
59    <Compile Include="ConvexHull\ConvexHullInternal.cs" />
60    <Compile Include="ConvexHull\IVertex.cs" />
61    <Compile Include="Properties\AssemblyInfo.cs" />
62    <Compile Include="StarMath\StarMathLibrary.cs" />
63    <Compile Include="Triangulation\DelaunayTriangulation.cs" />
64    <Compile Include="Triangulation\Triangulation.cs" />
65    <Compile Include="Triangulation\TriangulationCell.cs" />
66    <Compile Include="Triangulation\VoronoiEdge.cs" />
67    <Compile Include="Triangulation\VoronoiMesh.cs" />
68  </ItemGroup>
69  <ItemGroup>
70    <None Include="HeuristicLab.snk" />
71  </ItemGroup>
72  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
73  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
74       Other similar extension points exist, see Microsoft.Common.targets.
75  <Target Name="BeforeBuild">
76  </Target>
77  <Target Name="AfterBuild">
78  </Target>
79  -->
80</Project>
Note: See TracBrowser for help on using the repository browser.