-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathISO3166.csproj
36 lines (36 loc) · 2.12 KB
/
ISO3166.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
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net20;netstandard1.0;netstandard2.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.
Last check against the official ISO 3166 as on https://www.iso.org/obp/ui/#search: 8th January 2020.
</Description>
<PackageReleaseNotes>
See https://github.com/schourode/iso3166/blob/master/CHANGELOG.md
</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/schourode/iso3166</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageTags>iso3166 country</PackageTags>
<RepositoryUrl>https://github.com/schourode/iso3166.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<AssemblyDescription>Codes for the representation of names of countries.</AssemblyDescription>
<Version>1.0.4</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyOriginatorKeyFile>ISO3166.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<!-- EmbedUntrackedSources for deterministic build -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>