forked from frankodoom/CountryData.Net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCountryData.Standard.csproj
More file actions
27 lines (22 loc) · 889 Bytes
/
Copy pathCountryData.Standard.csproj
File metadata and controls
27 lines (22 loc) · 889 Bytes
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>
<TargetFramework>netstandard2.0</TargetFramework>
<Company>Accede</Company>
<Description>A Cross Platform .NET wrapper for getting Global Country , Short-code and Region Data.</Description>
<PackageProjectUrl>https://github.com/frankodoom/CountryData.Standard</PackageProjectUrl>
<RepositoryUrl>https://github.com/frankodoom/CountryData.Standard</RepositoryUrl>
<PackageTags>Xamarin, Country-Api Country-Data Country-Region</PackageTags>
<NeutralLanguage />
</PropertyGroup>
<ItemGroup>
<None Remove="data.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="data.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
</Project>