forked from danludwig/NGeo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNGeo2.nuspec
92 lines (86 loc) · 4.02 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>NGeo2</id>
<version>3.0.0</version>
<title>NGeo2</title>
<authors>Axel Eckenberger</authors>
<owners>Axel Eckenberger</owners>
<license type="expression">MS-PL</license>
<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.
3.0.0
- Incorporated free text search thanks to sigmarsson (https://github.com/sigmarsson)
- Dropped support for portable-net45+win8 and netstandard1.1
- Addes support for net47, net5.0, netcoreapp3.1, and net4.7
- restructured library code into one project with multiple targets
- restructured test code into one project, dropped net40 test
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 targetFramework="net5.0">
<dependency id="Newtonsoft.Json" version="13.0.1" />
<dependency id="System.Reactive" version="5.0.0" />
<dependency id="System.Reactive.Core" version="5.0.0" />
<dependency id="System.Reactive.Interfaces" version="5.0.0" />
<dependency id="System.Reactive.Linq" version="5.0.0" />
</group>
<group targetFramework="net4.7">
<dependency id="Newtonsoft.Json" version="13.0.1" />
<dependency id="System.Reactive" version="5.0.0" />
<dependency id="System.Reactive.Core" version="5.0.0" />
<dependency id="System.Reactive.Interfaces" version="5.0.0" />
<dependency id="System.Reactive.Linq" version="5.0.0" />
</group>
<group targetFramework="netcoreapp3.1">
<dependency id="Newtonsoft.Json" version="13.0.1" />
<dependency id="System.Reactive" version="5.0.0" />
<dependency id="System.Reactive.Core" version="5.0.0" />
<dependency id="System.Reactive.Interfaces" version="5.0.0" />
<dependency id="System.Reactive.Linq" version="5.0.0" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="Newtonsoft.Json" version="13.0.1" />
<dependency id="System.Reactive" version="5.0.0" />
<dependency id="System.Reactive.Core" version="5.0.0" />
<dependency id="System.Reactive.Interfaces" version="5.0.0" />
<dependency id="System.Reactive.Linq" version="5.0.0" />
</group>
<group targetFramework="net40">
<dependency id="Newtonsoft.Json" version="9.0.1" />
<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.NET40\bin\Release\Ngeo2.*" target="lib\net40" />
<file src="NGeo2\bin\Release\net47\Ngeo2.*" target="lib\net47" />
<file src="NGeo2\bin\Release\netcoreapp3.1\Ngeo2.*" target="lib\netcoreapp3.1" />
<file src="NGeo2\bin\Release\net5.0\Ngeo2.*" target="lib\net5.0" />
<file src="NGeo2\bin\Release\netstandard2.0\Ngeo2.*" target="lib\netstandard2.0" />
</files>
</package>