This repository was archived by the owner on Jan 28, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathGeocoding.UsCensusBureau.csproj
More file actions
37 lines (31 loc) · 2.03 KB
/
Geocoding.UsCensusBureau.csproj
File metadata and controls
37 lines (31 loc) · 2.03 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
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Includes a model and interface for communicating with four popular Geocoding providers. Current implementations include: Google Maps, Yahoo! PlaceFinder, Bing Maps (aka Virtual Earth), and Mapquest. The API returns latitude/longitude coordinates and normalized address information. This can be used to perform address validation, real time mapping of user-entered addresses, distance calculations, and much more.</Description>
<AssemblyTitle>Geocoding.net UsCensusBureau</AssemblyTitle>
<VersionPrefix>4.0.0-beta1</VersionPrefix>
<Authors>chadly</Authors>
<TargetFrameworks>netstandard1.3;net46</TargetFrameworks>
<AssemblyName>Geocoding.UsCensusBureau</AssemblyName>
<PackageId>Geocoding.UsCensusBureau</PackageId>
<PackageTags>geocoding;geocode;geocoder;maps;address;validation;normalization;google-maps;bing-maps;yahoo-placefinder;mapquest</PackageTags>
<PackageReleaseNotes>https://github.com/chadly/Geocoding.net/releases/latest</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/chadly/Geocoding.net</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/chadly/Geocoding.net/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/chadly/Geocoding.net.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>4.0.0</Version>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Geocoding.Core\Geocoding.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='netstandard1.3'">
<PackageReference Include="System.Net.Http" Version="4.3.1" />
<PackageReference Include="System.Runtime.Serialization.Json" Version="4.3.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net46'">
<Reference Include="System.Net.Http" />
</ItemGroup>
</Project>