Skip to content

Commit f6d68ed

Browse files
Hunt MattHunt Matt
authored andcommitted
Final commit for v1 Alpha
1 parent ce6baab commit f6d68ed

3 files changed

Lines changed: 14 additions & 10 deletions

File tree

GeoJSON.Net.nuspec

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
33
<metadata>
44
<id>GeoJSON.Net</id>
5-
<version>$version$</version>
6-
<authors>Joerg Battermann</authors>
7-
<owners>Joerg Battermann and GeoJSON.Net contributors.</owners>
8-
<licenseUrl>https://github.com/GeoJSON-Net/GeoJSON.Net/blob/master/LICENSE</licenseUrl>
5+
<version>$version$-alpha</version>
6+
<authors>Matt Hunt, Joerg Battermann</authors>
7+
<owners>Matt Hunt, Joerg Battermann and GeoJSON.Net contributors.</owners>
8+
<licenseUrl>https://github.com/GeoJSON-Net/GeoJSON.Net/blob/master/LICENSE.md</licenseUrl>
99
<projectUrl>https://github.com/GeoJSON-Net/GeoJSON.Net</projectUrl>
1010
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1111
<description>.Net library for GeoJSON types and corresponding Json.Net (de)serializers.</description>
12-
<releaseNotes>Downgraded Json.Net to earliest compatible version (7.0.1).</releaseNotes>
12+
<releaseNotes>Fully RFC 7946 compliant. Deprecating GeographicPosition in favour of Position to match RFC</releaseNotes>
1313
<language>en-US</language>
1414
<tags>geojson geo json geolocation</tags>
1515
<dependencies>
16-
<dependency id="Newtonsoft.Json" version="7.0.1" />
16+
<dependency id="Newtonsoft.Json" version="7.0.1" />
1717
</dependencies>
1818
</metadata>
1919
<files>

src/GeoJSON.Net.Tests/Geometry/LineStringTests.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ public void Can_Deserialize()
7575
var actualLineString = JsonConvert.DeserializeObject<LineString>(json);
7676

7777
Assert.AreEqual(expectedLineString, actualLineString);
78+
79+
Assert.AreEqual(4, actualLineString.Coordinates.Count);
80+
Assert.AreEqual(expectedLineString.Coordinates[0].Latitude, actualLineString.Coordinates[0].Latitude);
81+
Assert.AreEqual(expectedLineString.Coordinates[0].Longitude, actualLineString.Coordinates[0].Longitude);
7882
}
7983

8084
private LineString GetLineString(double offset = 0.0)

src/GeoJSON.Net.sln

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.24720.0
4+
VisualStudioVersion = 14.0.25420.1
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeoJSON.Net", "GeoJSON.Net\GeoJSON.Net.csproj", "{7C0D45ED-681E-4DEC-9910-BAE1211E4889}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{7AFBD129-E5A1-48D0-B7F6-7CCD6D06AF17}"
99
ProjectSection(SolutionItems) = preProject
1010
..\GeoJSON.Net.nuspec = ..\GeoJSON.Net.nuspec
11-
LICENSE = LICENSE
12-
README = README
11+
..\LICENSE.md = ..\LICENSE.md
12+
..\README.md = ..\README.md
1313
EndProjectSection
1414
EndProject
1515
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeoJSON.Net.Tests", "GeoJSON.Net.Tests\GeoJSON.Net.Tests.csproj", "{6C93B314-9208-4684-B873-172F7EC81689}"

0 commit comments

Comments
 (0)