forked from schourode/iso3166
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathISO3166.csproj
20 lines (20 loc) · 1.29 KB
/
ISO3166.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net20;netstandard1.0</TargetFrameworks>
<AssemblyTitle>ISO 3166-1 Country codes</AssemblyTitle>
<Title>ISO 3166-1 Country list</Title>
<Authors>Jørn Schou-Rode</Authors>
<Description>
ISO 3166-1 is part of the ISO 3166 standard published by the International Organization for Standardization (ISO), and defines codes for the names of countries, dependent territories, and special areas of geographical interest.
This package provides a list of countries including their official English name as well as their ISO 3166 defined two-letter, three-letter and three-digit country codes. The list is accessible for any .NET language via the static field ISO3166.Country.List.
Data source: Wikipedia.
</Description>
<PackageLicenseUrl>http://creativecommons.org/licenses/by-sa/3.0/</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/schourode/iso3166</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageTags>iso3166 country</PackageTags>
<AssemblyDescription>Codes for the representation of names of countries.</AssemblyDescription>
<Version>1.0.2</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
</Project>