Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.1.1 #99

Closed
wants to merge 54 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
af5a2f7
Added option to inject custom profile.
xivk Dec 18, 2017
481e3bc
Updated README.
xivk Dec 18, 2017
cd8b395
Updated packages, removed encode route sample and added edge encoding…
xivk Dec 18, 2017
3e3545a
Added sample encoding an edge, added extension method for directed ed…
xivk Dec 18, 2017
80e6ad2
Updated everything to .net core and Itinero 1.4.0.
xivk Dec 18, 2017
c0acb87
Updated and upgraded dependencies.
xivk Jul 17, 2018
c8b83bb
Add test with bollards
pietervdvn Jan 17, 2019
f1a0dc7
Failing test
pietervdvn Jan 17, 2019
1834c7f
Test with bollard
pietervdvn Jan 17, 2019
eff8489
Made the bollard test fail.
xivk Jan 17, 2019
1636a7b
Fixed warnings, formatting
pietervdvn Jan 17, 2019
a5f0ec9
Added special case for bollards within CoderExtensions.IsValid(uint V…
pietervdvn Jan 17, 2019
7747cbd
Changed profile to car.shortest, encoding over bollards work
pietervdvn Jan 17, 2019
c1da1c9
Decently fixed restriction detection for validation of OpenLR points
pietervdvn Jan 17, 2019
6a64fc8
Correctly handle turn restrictions
pietervdvn Jan 17, 2019
a0b6d64
Version bump
pietervdvn Jan 18, 2019
f99e765
Version correct, removed console.WriteLine in test
pietervdvn Jan 18, 2019
c4aca08
Merge pull request #89 from itinero/features/bollards
pietervdvn Jan 18, 2019
8ea93bc
Improved find shortest path by using proper router points.
xivk Feb 12, 2019
cef6017
Made agressive routing settings configurable.
xivk Feb 13, 2019
8698c8a
Updated Itinero.
xivk Feb 14, 2019
f30e061
Bumped version #.
xivk Feb 14, 2019
216487a
Fixed more packages.
xivk Feb 14, 2019
f91b39b
Small refactoring, commenting and warning fixing
pietervdvn Apr 3, 2019
745e2b2
Merge develop
pietervdvn Apr 3, 2019
8e28efa
Add exception when line stays divergent
pietervdvn Apr 3, 2019
5910c2f
Version bump
pietervdvn Apr 3, 2019
c5a7ed0
Fixed error message, added bam test (which is disabled)
pietervdvn Apr 3, 2019
4178a54
Add extra null-check, imporved bam tests
pietervdvn Apr 3, 2019
c9719a5
Add bam testdata
pietervdvn Apr 3, 2019
f64a1a9
Fixed projection for the case when the points exactly match shapepoints.
xivk Apr 9, 2019
8a09f99
Added extra debug method to convert referenced objects to geojson.
xivk Apr 9, 2019
efc2063
Bumped version #.
xivk Apr 9, 2019
eedef70
Use cached profiles.
xivk May 31, 2019
f27a559
Updated Itinero.
xivk May 31, 2019
8f4de69
Updated version #.
xivk May 31, 2019
6ff4780
Fixed nuspec.
xivk May 31, 2019
c483421
Moved to netstandard2.0 only.
xivk Jan 17, 2020
c5425fa
Removed old nuspecs.
xivk Jan 17, 2020
7a7b0f0
Updated NWB sample.
xivk Jan 17, 2020
a820596
Updated OSM sample.
xivk Jan 17, 2020
c00004c
Fixed functional tests.
xivk Jan 17, 2020
660c777
Fixed OSM sample.
xivk Jan 17, 2020
bc511be
Performance improvements and itinero update.
xivk Jan 23, 2020
26c42ee
Fix decoding of PointAlongLine messages with no positive offset byte
Jan 12, 2023
58bf8f9
Fix PointAlongLine offset encoding
bensaxby Jun 19, 2023
96279cc
Modernized codebase and added build action.
xivk Apr 25, 2024
d82a9f0
Fixed version string.
xivk Apr 25, 2024
fd4f8da
Added github nuget push.
xivk Apr 25, 2024
91baf8a
Merge pull request #98 from Parkopedia/fix-point-along-line-encoding
xivk Apr 25, 2024
480946b
Merge pull request #97 from civspan/hotfix/decode-point-along-line-no…
xivk Apr 25, 2024
64adac3
Update OpenLR.Common.props
xivk Apr 25, 2024
40e8523
Fixed tests.
xivk Apr 25, 2024
c167439
Added action to release.
xivk Apr 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .github/workflows/build-and-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: .NET Core

on:
push:
branches: [ develop ]

jobs:
build-and-test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Setup .NET Core 6.
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore packages.
run: dotnet restore
- name: Build all projects.
run: dotnet build --configuration Release --no-restore

- name: Unittests.
run: dotnet test
working-directory: ./test/OpenLR.Test/

- name: Nuget Pack
run: dotnet pack -c release
working-directory: ./src/OpenLR/
- name: Nuget Pack
run: dotnet pack -c release
working-directory: ./src/OpenLR.Geo/

- name: Nuget push Github
run: dotnet nuget push **/*.nupkg --skip-duplicate -k ${{ secrets.GITHUB_TOKEN }} -s https://nuget.pkg.github.com/itinero/index.json
working-directory: ./src/

# - name: Nuget push
# run: dotnet nuget push **/*.nupkg --skip-duplicate -k ${{ secrets.NUGET_TOKEN }} -s https://api.nuget.org/v3/index.json
# working-directory: ./src/
42 changes: 42 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: .NET Core

on:
push:
branches: [ main ]

jobs:
build-and-test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Setup .NET Core 6.
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore packages.
run: dotnet restore
- name: Build all projects.
run: dotnet build --configuration Release --no-restore

- name: Unittests.
run: dotnet test
working-directory: ./test/OpenLR.Test/

- name: Nuget Pack
run: dotnet pack -c release
working-directory: ./src/OpenLR/
- name: Nuget Pack
run: dotnet pack -c release
working-directory: ./src/OpenLR.Geo/

- name: Nuget push Github
run: dotnet nuget push **/*.nupkg --skip-duplicate -k ${{ secrets.GITHUB_TOKEN }} -s https://nuget.pkg.github.com/itinero/index.json
working-directory: ./src/

- name: Nuget push
run: dotnet nuget push **/*.nupkg --skip-duplicate -k ${{ secrets.NUGET_TOKEN }} -s https://api.nuget.org/v3/index.json
working-directory: ./src/
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,10 @@ test-results*/
*.routerdb
*.osm.pbf

.idea
.idea/*

test/OpenLR.Test.Functional/logs/*

packages/*
!packages/repositories.config
!packages/repositories.config
19 changes: 19 additions & 0 deletions OpenLR.Common.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>

<!--- Package information, Version -->
<PropertyGroup>
<PackageVersion>1.1.1-pre13</PackageVersion>
<NeutralLanguage>en</NeutralLanguage>
<Description>OpenLR library for .NET.</Description>
<Copyright>Itinero BV</Copyright>
<PackageProjectUrl>https://github.com/Itinero/OpenLR</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/itinero/OpenLR/blob/develop/LICENSE.md</PackageLicenseUrl>
<PackageIconUrl>http://www.itinero.tech/logos/openlr_logo64.png</PackageIconUrl>
<RepositoryUrl>https://github.com/Itinero/OpenLR</RepositoryUrl>
<PackageTags>openlr, routing</PackageTags>
<RepositoryType>git</RepositoryType>
<Authors>Itinero Contributors</Authors>
<Company>Itinero BV</Company>
</PropertyGroup>
</Project>
104 changes: 7 additions & 97 deletions OpenLR.sln
Original file line number Diff line number Diff line change
@@ -1,26 +1,14 @@

Microsoft Visual Studio Solution File, Format Version 12.00
<<<<<<< HEAD
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
=======
# Visual Studio 15
VisualStudioVersion = 15.0.26228.4
>>>>>>> develop
VisualStudioVersion = 15.0.27004.2009
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenLR", "src\OpenLR\OpenLR.csproj", "{EC64B4E2-6637-4BC5-8FFE-0A16049ACD04}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{684B6559-C01F-4862-BA85-F0BF7642FB77}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenLR.Geo", "src\OpenLR.Geo\OpenLR.Geo.csproj", "{A2D0D3EA-6D13-46A4-A5DD-7C181F6F00AD}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "nuget", "nuget", "{C698DA28-DCEF-4DE6-8F2E-9147E241CFE0}"
ProjectSection(SolutionItems) = preProject
nuspec\OpenLR.Geo.nuspec = nuspec\OpenLR.Geo.nuspec
nuspec\OpenLR.nuspec = nuspec\OpenLR.nuspec
nuspec\OpenLR_logo64.png = nuspec\OpenLR_logo64.png
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{E9F7404A-912C-429C-AD40-E4A8E4E47D20}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenLR.Test.Functional", "test\OpenLR.Test.Functional\OpenLR.Test.Functional.csproj", "{FB4094CB-9898-4112-B2CB-CD4F91818890}"
Expand All @@ -32,92 +20,21 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
.gitignore = .gitignore
LICENSE.md = LICENSE.md
README.md = README.md
OpenLR.Common.props = OpenLR.Common.props
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenLR.Test.Runner", "test\OpenLR.Test.Runner\OpenLR.Test.Runner.csproj", "{DC53D05F-CF36-40D0-A6FD-221C93074BAA}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{082AB082-0910-4B42-AC57-330BE7C57771}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.NWB", "samples\Samples.NWB\Samples.NWB.csproj", "{EC408DBE-A08C-4132-AFC1-4939690E3D75}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Samples.NWB", "samples\Samples.NWB\Samples.NWB.csproj", "{EC408DBE-A08C-4132-AFC1-4939690E3D75}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.OSM", "samples\Samples.OSM\Samples.OSM.csproj", "{EC179DC9-835B-4549-B996-AD616A3566EF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{4E9C52C9-A228-41C8-91C4-25C65FDE2411}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sample.EncodeRoute", "samples\Sample.EncodeRoute\Sample.EncodeRoute.csproj", "{C97DCD83-68DB-4E79-8D22-847EA160CCA7}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Samples.OSM", "samples\Samples.OSM\Samples.OSM.csproj", "{EC179DC9-835B-4549-B996-AD616A3566EF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
<<<<<<< HEAD
{036AD1DA-006A-48B6-826C-83D12561411D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{036AD1DA-006A-48B6-826C-83D12561411D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{036AD1DA-006A-48B6-826C-83D12561411D}.Debug|x64.ActiveCfg = Debug|x64
{036AD1DA-006A-48B6-826C-83D12561411D}.Debug|x64.Build.0 = Debug|x64
{036AD1DA-006A-48B6-826C-83D12561411D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{036AD1DA-006A-48B6-826C-83D12561411D}.Release|Any CPU.Build.0 = Release|Any CPU
{036AD1DA-006A-48B6-826C-83D12561411D}.Release|x64.ActiveCfg = Release|x64
{036AD1DA-006A-48B6-826C-83D12561411D}.Release|x64.Build.0 = Release|x64
{252D884C-8BED-4711-A2DA-21F8DC05D697}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{252D884C-8BED-4711-A2DA-21F8DC05D697}.Debug|Any CPU.Build.0 = Debug|Any CPU
{252D884C-8BED-4711-A2DA-21F8DC05D697}.Debug|x64.ActiveCfg = Debug|x64
{252D884C-8BED-4711-A2DA-21F8DC05D697}.Debug|x64.Build.0 = Debug|x64
{252D884C-8BED-4711-A2DA-21F8DC05D697}.Release|Any CPU.ActiveCfg = Release|Any CPU
{252D884C-8BED-4711-A2DA-21F8DC05D697}.Release|Any CPU.Build.0 = Release|Any CPU
{252D884C-8BED-4711-A2DA-21F8DC05D697}.Release|x64.ActiveCfg = Release|x64
{252D884C-8BED-4711-A2DA-21F8DC05D697}.Release|x64.Build.0 = Release|x64
{FBE5BE08-EF13-4108-92B2-46A960879F33}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FBE5BE08-EF13-4108-92B2-46A960879F33}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FBE5BE08-EF13-4108-92B2-46A960879F33}.Debug|x64.ActiveCfg = Debug|x64
{FBE5BE08-EF13-4108-92B2-46A960879F33}.Debug|x64.Build.0 = Debug|x64
{FBE5BE08-EF13-4108-92B2-46A960879F33}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FBE5BE08-EF13-4108-92B2-46A960879F33}.Release|Any CPU.Build.0 = Release|Any CPU
{FBE5BE08-EF13-4108-92B2-46A960879F33}.Release|x64.ActiveCfg = Release|x64
{FBE5BE08-EF13-4108-92B2-46A960879F33}.Release|x64.Build.0 = Release|x64
{CF358CF6-913D-47DC-9A83-DE90153A82F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CF358CF6-913D-47DC-9A83-DE90153A82F2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CF358CF6-913D-47DC-9A83-DE90153A82F2}.Debug|x64.ActiveCfg = Debug|x64
{CF358CF6-913D-47DC-9A83-DE90153A82F2}.Debug|x64.Build.0 = Debug|x64
{CF358CF6-913D-47DC-9A83-DE90153A82F2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CF358CF6-913D-47DC-9A83-DE90153A82F2}.Release|Any CPU.Build.0 = Release|Any CPU
{CF358CF6-913D-47DC-9A83-DE90153A82F2}.Release|x64.ActiveCfg = Release|x64
{CF358CF6-913D-47DC-9A83-DE90153A82F2}.Release|x64.Build.0 = Release|x64
{61C1F8E2-9AFB-4EDA-8465-B0ECB20296D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{61C1F8E2-9AFB-4EDA-8465-B0ECB20296D7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{61C1F8E2-9AFB-4EDA-8465-B0ECB20296D7}.Debug|x64.ActiveCfg = Debug|x64
{61C1F8E2-9AFB-4EDA-8465-B0ECB20296D7}.Debug|x64.Build.0 = Debug|x64
{61C1F8E2-9AFB-4EDA-8465-B0ECB20296D7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{61C1F8E2-9AFB-4EDA-8465-B0ECB20296D7}.Release|Any CPU.Build.0 = Release|Any CPU
{61C1F8E2-9AFB-4EDA-8465-B0ECB20296D7}.Release|x64.ActiveCfg = Release|x64
{61C1F8E2-9AFB-4EDA-8465-B0ECB20296D7}.Release|x64.Build.0 = Release|x64
{1130C7F7-C993-4669-9B93-010C9BBADE1C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1130C7F7-C993-4669-9B93-010C9BBADE1C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1130C7F7-C993-4669-9B93-010C9BBADE1C}.Debug|x64.ActiveCfg = Debug|x64
{1130C7F7-C993-4669-9B93-010C9BBADE1C}.Debug|x64.Build.0 = Debug|x64
{1130C7F7-C993-4669-9B93-010C9BBADE1C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1130C7F7-C993-4669-9B93-010C9BBADE1C}.Release|Any CPU.Build.0 = Release|Any CPU
{1130C7F7-C993-4669-9B93-010C9BBADE1C}.Release|x64.ActiveCfg = Release|x64
{1130C7F7-C993-4669-9B93-010C9BBADE1C}.Release|x64.Build.0 = Release|x64
{E14B6468-C422-4811-828E-BCF522266EFF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E14B6468-C422-4811-828E-BCF522266EFF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E14B6468-C422-4811-828E-BCF522266EFF}.Debug|x64.ActiveCfg = Debug|x64
{E14B6468-C422-4811-828E-BCF522266EFF}.Debug|x64.Build.0 = Debug|x64
{E14B6468-C422-4811-828E-BCF522266EFF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E14B6468-C422-4811-828E-BCF522266EFF}.Release|Any CPU.Build.0 = Release|Any CPU
{E14B6468-C422-4811-828E-BCF522266EFF}.Release|x64.ActiveCfg = Release|x64
{E14B6468-C422-4811-828E-BCF522266EFF}.Release|x64.Build.0 = Release|x64
{C97DCD83-68DB-4E79-8D22-847EA160CCA7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C97DCD83-68DB-4E79-8D22-847EA160CCA7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C97DCD83-68DB-4E79-8D22-847EA160CCA7}.Debug|x64.ActiveCfg = Debug|Any CPU
{C97DCD83-68DB-4E79-8D22-847EA160CCA7}.Debug|x64.Build.0 = Debug|Any CPU
{C97DCD83-68DB-4E79-8D22-847EA160CCA7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C97DCD83-68DB-4E79-8D22-847EA160CCA7}.Release|Any CPU.Build.0 = Release|Any CPU
{C97DCD83-68DB-4E79-8D22-847EA160CCA7}.Release|x64.ActiveCfg = Release|Any CPU
{C97DCD83-68DB-4E79-8D22-847EA160CCA7}.Release|x64.Build.0 = Release|Any CPU
=======
{EC64B4E2-6637-4BC5-8FFE-0A16049ACD04}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EC64B4E2-6637-4BC5-8FFE-0A16049ACD04}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EC64B4E2-6637-4BC5-8FFE-0A16049ACD04}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -134,10 +51,6 @@ Global
{9DAC0F4B-F928-4C53-AAFD-E60BCE6182F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9DAC0F4B-F928-4C53-AAFD-E60BCE6182F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9DAC0F4B-F928-4C53-AAFD-E60BCE6182F7}.Release|Any CPU.Build.0 = Release|Any CPU
{DC53D05F-CF36-40D0-A6FD-221C93074BAA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DC53D05F-CF36-40D0-A6FD-221C93074BAA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DC53D05F-CF36-40D0-A6FD-221C93074BAA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DC53D05F-CF36-40D0-A6FD-221C93074BAA}.Release|Any CPU.Build.0 = Release|Any CPU
{EC408DBE-A08C-4132-AFC1-4939690E3D75}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EC408DBE-A08C-4132-AFC1-4939690E3D75}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EC408DBE-A08C-4132-AFC1-4939690E3D75}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -146,22 +59,19 @@ Global
{EC179DC9-835B-4549-B996-AD616A3566EF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EC179DC9-835B-4549-B996-AD616A3566EF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EC179DC9-835B-4549-B996-AD616A3566EF}.Release|Any CPU.Build.0 = Release|Any CPU
>>>>>>> develop
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
<<<<<<< HEAD
{C97DCD83-68DB-4E79-8D22-847EA160CCA7} = {4E9C52C9-A228-41C8-91C4-25C65FDE2411}
=======
{EC64B4E2-6637-4BC5-8FFE-0A16049ACD04} = {684B6559-C01F-4862-BA85-F0BF7642FB77}
{A2D0D3EA-6D13-46A4-A5DD-7C181F6F00AD} = {684B6559-C01F-4862-BA85-F0BF7642FB77}
{FB4094CB-9898-4112-B2CB-CD4F91818890} = {E9F7404A-912C-429C-AD40-E4A8E4E47D20}
{9DAC0F4B-F928-4C53-AAFD-E60BCE6182F7} = {E9F7404A-912C-429C-AD40-E4A8E4E47D20}
{DC53D05F-CF36-40D0-A6FD-221C93074BAA} = {E9F7404A-912C-429C-AD40-E4A8E4E47D20}
{EC408DBE-A08C-4132-AFC1-4939690E3D75} = {082AB082-0910-4B42-AC57-330BE7C57771}
{EC179DC9-835B-4549-B996-AD616A3566EF} = {082AB082-0910-4B42-AC57-330BE7C57771}
>>>>>>> develop
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {450F7C5F-5081-4385-BC20-DC6117BAD3D2}
EndGlobalSection
EndGlobal
4 changes: 4 additions & 0 deletions OpenLR.sln.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/UserDictionary/Words/=Abelshausen/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=NONINFRINGEMENT/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=traversable/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# OpenLR for .NET

![Build status](http://build.itinero.tech/app/rest/builds/buildType:(id:Itinero_Openlr)/statusIcon)
[![Build status](http://build.itinero.tech:8080/app/rest/builds/buildType:(id:Itinero_Openlr)/statusIcon)](https://build.itinero.tech/viewType.html?buildTypeId=Itinero_Openlr)
[![Visit our website](https://img.shields.io/badge/website-itinero.tech-020031.svg) ](http://www.itinero.tech/)
[![GPL licensed](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/itinero/openlr/blob/develop/LICENSE.md)

- OpenLR: [![NuGet](https://img.shields.io/nuget/v/OpenLR.svg?style=flat)](https://www.nuget.org/packages/OpenLR/)
- OpenLR.Geo: [![NuGet](https://img.shields.io/nuget/v/OpenLR.Geo.svg?style=flat)](https://www.nuget.org/packages/OpenLR.Geo/)
- OpenLR: [![NuGet Badge](https://buildstats.info/nuget/OpenLR)](https://www.nuget.org/packages/OpenLR/)
- OpenLR.Geo: [![NuGet Badge](https://buildstats.info/nuget/OpenLR.Geo)](https://www.nuget.org/packages/OpenLR.Geo/)

This is an implementation of the OpenLR (Open Location Reference) protocol using Itinero. Development was initially sponsered by via.nl (http://via.nl/) and Be-Mobile (http://www.be-mobile-international.com/).

Expand Down
4 changes: 0 additions & 4 deletions SharedAssemblyVersion.cs

This file was deleted.

File renamed without changes
29 changes: 0 additions & 29 deletions nuspec/OpenLR-old.nuspec

This file was deleted.

33 changes: 0 additions & 33 deletions nuspec/OpenLR.Geo.nuspec

This file was deleted.

Loading
Loading