Skip to content

Commit

Permalink
2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chubrik committed Feb 29, 2020
1 parent 11c0328 commit dbbf9c2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dist: bionic
language: csharp
mono: none
dotnet: 2.2
dotnet: 3.0
script:
- dotnet restore OsmDataKit.sln
8 changes: 4 additions & 4 deletions OsmDataKit.Tests/OsmDataKit.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<TargetFramework>netcoreapp3.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.1.0" />
<PackageReference Include="MSTest.TestFramework" Version="2.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
11 changes: 6 additions & 5 deletions OsmDataKit/OsmDataKit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,24 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>2.2.0</Version>
<Version>2.2.1</Version>
<PackageTags>osm openstreetmap data pbf</PackageTags>
<Authors>Arkadi Chubrik</Authors>
<Description>Complete OSM objects. It makes many requests to PBF, then it collects all the data and caches them.</Description>
<PackageIconUrl>https://raw.githubusercontent.com/chubrik/OsmDataKit/master/OsmDataKit-logo.png</PackageIconUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/chubrik/OsmDataKit</PackageProjectUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Copyright>© 2018 Arkadi Chubrik</Copyright>
</PropertyGroup>

<ItemGroup>
<None Include="..\LICENSE" Pack="True" PackagePath="" />
<None Include="..\icon.png" Pack="true" PackagePath="" />
<None Include="..\LICENSE" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Kit.Json" Version="1.6.1" />
<PackageReference Include="OsmSharp" Version="6.1.0" />
<PackageReference Include="Kit.Json" Version="1.6.3" />
<PackageReference Include="OsmSharp" Version="6.2.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [![OsmDataKit project](https://raw.githubusercontent.com/chubrik/OsmDataKit/master/OsmDataKit-logo.png)](#) OsmDataKit
# [![OsmDataKit project](https://raw.githubusercontent.com/chubrik/OsmDataKit/master/icon.png)](#) OsmDataKit
[![NuGet](https://img.shields.io/nuget/v/OsmDataKit.svg)](https://www.nuget.org/packages/OsmDataKit/) [![Build Status](https://travis-ci.org/chubrik/OsmDataKit.svg?branch=master)](https://travis-ci.org/chubrik/OsmDataKit)

Complete OSM objects. It makes many requests to PBF, then it collects all the data and caches them.
File renamed without changes

0 comments on commit dbbf9c2

Please sign in to comment.