-
Notifications
You must be signed in to change notification settings - Fork 0
/
API.Routing.csproj
27 lines (25 loc) · 1.12 KB
/
API.Routing.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<Version>1.0.1</Version>
<AssemblyName>Yandex.API.Routing</AssemblyName>
<PackageId>Yandex.API.Routing</PackageId>
<RootNamespace>Yandex.API</RootNamespace>
<Description>Unofficial implementation of yandex routing api.</Description>
<AutoIncrementPackageRevision>true</AutoIncrementPackageRevision>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>
https://github.com/risinghero/Yandex.API.Routing
</PackageProjectUrl>
<RepositoryUrl>https://github.com/risinghero/Yandex.API.Routing</RepositoryUrl>
<Authors>RisingHeroMan</Authors>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" />
<None Include="..\LICENSE" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>