-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathKdTreeLib.csproj
More file actions
33 lines (29 loc) · 1.61 KB
/
KdTreeLib.csproj
File metadata and controls
33 lines (29 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net45;net451;net452;net46;net461;net462;net47;net471;netstandard2.0;netcoreapp2.0</TargetFrameworks>
<Authors>codeandcats@gmail.com, RobIII</Authors>
<Company>codeandcats@gmail.com</Company>
<PackageId>KdTree</PackageId>
<NoPackageAnalysis>true</NoPackageAnalysis>
<Product>KdTree</Product>
<Copyright>Copyright codeandcats@gmail.com 2013</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseUrl>https://raw.github.com/codeandcats/KdTree/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/codeandcats/KdTree</PackageProjectUrl>
<PackageTags>kdtree kd-tree binary search tree bst spatial</PackageTags>
<PackageReleaseNotes>* Remove requirement to limit number of result in radial search</PackageReleaseNotes>
<Description>Generic multi-dimensional binary search tree.</Description>
<PackageIconUrl>https://raw.githubusercontent.com/codeandcats/KdTree/master/Images/kdtree.png</PackageIconUrl>
<Version>1.4.1</Version>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;RELEASE;NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
</Project>