-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathWorld.Net.csproj
More file actions
72 lines (61 loc) · 2.46 KB
/
World.Net.csproj
File metadata and controls
72 lines (61 loc) · 2.46 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(DefaultTargetFrameworks);$(CompatibilityTargetFrameworks)</TargetFrameworks>
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Nullable>enable</Nullable>
<Title>Countries.World.NET</Title>
<Description>A simple package designed to retrieve a list of all countries.
Fetch specific details about a country using its identifier.</Description>
<PackageProjectUrl>https://github.com/selfmadecode/world.net</PackageProjectUrl>
<PackageIcon>globe.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/selfmadecode/world.net</RepositoryUrl>
<PackageTags>countries;states;regions;provinces;territories;iso;iso3166;iso3166-1;iso3166-2;geography;location;data;dataset;global;international;world</PackageTags>
<PackageReleaseNotes>v1.1.0
New Features:
Ability to retrived selected countries based on identifiers
A new method has been added to the CountryProvider class to allow filtering countries by a collection of CountryIdentifier values.
This method returns a list of unique ICountry instances corresponding to the provided country identifiers, removing any duplicates.
var indentifiers = new List<CountryIdentifier>
{
CountryIdentifier.Nigeria,
CountryIdentifier.Brazil
};
var selectedCountries = CountryProvider.GetCountries(indentifiers);
Benefits:
Allows more efficient retrieval of multiple countries based on identifiers.
Handles duplicate identifiers gracefully by returning only distinct countries.
Improves flexibility when working with country data by enabling precise selection.
Breaking Changes:
No breaking changes introduced in this release.
Bug Fixes:
N/A
Deprecations:
N/A
</PackageReleaseNotes>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Authors>selfmade</Authors>
<PackageId>Countries.World.Net</PackageId>
<Copyright>© 2025 SelfMadeCode. All rights reserved.</Copyright>
<Version>1.1.0</Version>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\globe.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>