|
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
|
<RootNamespace>NeighborInterpolator</RootNamespace>
|
|
|
|
|
|
<AssemblyName>NeighborInterpolator</AssemblyName>
|
|
|
|
|
|
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
|
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
|
<Deterministic>true</Deterministic>
|
|
|
|
|
|
<TargetFrameworkProfile />
|
|
|
|
|
|
<ProjectGuid>{FE09FB66-315B-4819-8FA0-2C5B896B953B}</ProjectGuid>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
|
<OutputPath>..\..\bin\Debug\</OutputPath>
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
|
<DocumentationFile>..\..\bin\Debug\NeighborInterpolator.xml</DocumentationFile>
|
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="Internal\Bounds.cs" />
|
|
|
|
|
|
<Compile Include="Internal\ConvexPolygonIntersectionHelper.cs" />
|
|
|
|
|
|
<Compile Include="Internal\ImmutableQuadEdgeData.cs" />
|
|
|
|
|
|
<Compile Include="Internal\ImmutableVertexData.cs" />
|
|
|
|
|
|
<Compile Include="Internal\InterpolationEvaluator.cs" />
|
|
|
|
|
|
<Compile Include="Internal\NodeWeight.cs" />
|
|
|
|
|
|
<Compile Include="Internal\PointLocationType.cs" />
|
|
|
|
|
|
<Compile Include="Internal\PriorityQueue.cs" />
|
|
|
|
|
|
<Compile Include="Internal\SubDiv2D_Base.cs" />
|
|
|
|
|
|
<Compile Include="Internal\SubDiv2D_Immutable.cs" />
|
|
|
|
|
|
<Compile Include="Internal\SubDiv2D_Mutable.cs" />
|
|
|
|
|
|
<Compile Include="Internal\TestUtils.cs" />
|
|
|
|
|
|
<Compile Include="Internal\Utils.cs" />
|
|
|
|
|
|
<Compile Include="InterpolationMethod.cs" />
|
|
|
|
|
|
<Compile Include="Interpolator2d.cs" />
|
|
|
|
|
|
<Compile Include="NodeId.cs" />
|
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
|
<Compile Include="SubDivision2d.cs" />
|
|
|
|
|
|
<Compile Include="Triangle.cs" />
|
|
|
|
|
|
<Compile Include="VoronoiFacet.cs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" />
|
|
|
|
|
|
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
|
|
|
|
|
|
<PackageReference Include="System.ValueTuple">
|
|
|
|
|
|
<Version>4.5.0</Version>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="app.config" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
|
</Project>
|