Skip to content

Commit f1a8090

Browse files
Merge pull request #58 from pedoc/master
switch to netstandard2.0 and remove unused using
2 parents 41ba3ec + 05c9010 commit f1a8090

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

src/Geohash.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
6-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
6+
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
77
<PackageId>geohash-dotnet</PackageId>
88
<Authors>Hans-Juergen Pavelka</Authors>
99
<Company>Hans-Juergen Pavelka</Company>

src/PolygonHasher.cs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
using NetTopologySuite.Geometries;
2-
using NetTopologySuite.Index.Strtree;
1+
using NetTopologySuite.Geometries;
32
using System;
43
using System.Collections.Concurrent;
54
using System.Collections.Generic;
6-
using System.ComponentModel;
7-
using System.Diagnostics;
8-
using System.Linq;
95
using System.Threading;
106
using System.Threading.Tasks;
117

@@ -161,4 +157,4 @@ public HashSet<string> GetHashes(Polygon polygon, int geohashPrecision, GeohashI
161157
}
162158

163159
}
164-
}
160+
}

0 commit comments

Comments
 (0)