forked from Obalix/NGeo2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NGeo2.nuspec
67 lines (62 loc) · 2.51 KB
/
NGeo2.nuspec
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>NGeo2</id>
<version>2.0.0</version>
<title>NGeo2</title>
<authors>Axel Eckenberger</authors>
<owners>Axel Eckenberger</owners>
<licenseUrl>http://opensource.org/licenses/MS-PL</licenseUrl>
<projectUrl>https://github.com/Obalix/NGeo</projectUrl>
<!--<iconUrl>http://www.gravatar.com/avatar/2b36e5d2ac5fe3c2377466dd98c62d52.png</iconUrl>-->
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>
NGeo is a client library that makes it easier to invoke the
GeoNames service from .NET code.
</description>
<releaseNotes>
NGeo is a client library that makes it easier to invoke the
GeoNames services from .NET code.
It is based on the work of Dan Ludwig and John Meyer from The UCosmic Consortium.
2.0.0
- Complete rewrite of the data types and the service based on the HttpClient class.
- Libraries for: PCL (Profile7), Standard1.1 and NET 4.0
- Currently supported GeoNames endpoints:
* extendedFindNearby
* findNearbyPlaceName
* findNearby
* hierarchy
</releaseNotes>
<copyright>Copyright © Axel Eckenberger 2016</copyright>
<tags>GeoNames</tags>
<dependencies>
<group>
<dependency id="Newtonsoft.Json" version="9.0.1" />
</group>
<group targetFramework="portable-net45+win8">
<dependency id="System.Reactive.Core" version="3.0.0" />
<dependency id="System.Reactive.Interfaces" version="3.0.0" />
<dependency id="System.Reactive.Linq" version="3.0.0" />
</group>
<group targetFramework="netstandard1.1">
<dependency id="System.Reactive.Core" version="3.1.0" />
<dependency id="System.Reactive.Interfaces" version="3.1.0" />
<dependency id="System.Reactive.Linq" version="3.1.0" />
</group>
<group targetFramework="net40">
<dependency id="Microsoft.Bcl" version="1.1.10" />
<dependency id="Microsoft.Bcl.Async" version="1.0.168" />
<dependency id="Microsoft.Bcl.Build" version="1.0.21" />
<dependency id="Microsoft.Net.Http" version="2.2.29" />
<dependency id="Rx-Core" version="2.2.5" />
<dependency id="Rx-Interfaces" version="2.2.5" />
<dependency id="Rx-Linq" version="2.2.5" />
</group>
</dependencies>
</metadata>
<files>
<file src="NGeo2.PCL45\bin\Release\NGeo2.*" target="lib\portable-net45+win8" />
<file src="NGeo2.Standard1.1\bin\Release\NGeo2.*" target="lib\netstandard1.1" />
<file src="Ngeo2.NET40\bin\Release\Ngeo2.*" target="lib\net40" />
</files>
</package>