forked from chadly/Geocoding.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGeocoding.Google.csproj
More file actions
29 lines (25 loc) · 1.63 KB
/
Geocoding.Google.csproj
File metadata and controls
29 lines (25 loc) · 1.63 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
<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 Google</AssemblyTitle>
<VersionPrefix>4.0.0-beta1</VersionPrefix>
<Authors>chadly</Authors>
<TargetFramework>netstandard1.3</TargetFramework>
<AssemblyName>Geocoding.Google</AssemblyName>
<PackageId>Geocoding.Google</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>
<Version>4.0.0</Version>
<RepositoryUrl>https://github.com/chadly/Geocoding.net.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Geocoding.Core\Geocoding.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Net.Http" Version="4.3.1" />
<PackageReference Include="System.Xml.XPath" Version="4.3.0" />
</ItemGroup>
</Project>