Skip to content

Commit dc3c2a9

Browse files
authored
Merge pull request #104 from selfmadecode/pack_release
add release details - version 1.0.0
2 parents 80eaa7f + 0632312 commit dc3c2a9

4 files changed

Lines changed: 58 additions & 12 deletions

File tree

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Raphael Anyanwu
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
2-
3-
4-
██ ██ ██████ ██████ ██ ██████ ███ ██ ███████ ████████
5-
██ ██ ██ ██ ██ ██ ██ ██ ██ █████ ██ ██ ██
6-
██ █ ██ ██ ██ ██████ ██ ██ ██ ██ ██ ██ ██████ ██
7-
██ ███ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
8-
███ ███ ██████ ██ ██ ███████ ██████ ██ ██ ████ ███████ ██
9-
10-
===============================================================================
11-
12-
# World.Net
1+
# Countries.World.Net
132

143
## Overview
154
A simple package designed to:

src/World.Net/World.Net.csproj

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,42 @@
99
</PropertyGroup>
1010
<PropertyGroup>
1111
<Nullable>enable</Nullable>
12+
<Title>Countries.World.NET</Title>
13+
<Description>A simple package designed to retrieve a list of all countries.
14+
Fetch specific details about a country using its identifier.</Description>
15+
<PackageProjectUrl>https://github.com/selfmadecode/world.net</PackageProjectUrl>
16+
<PackageIcon>globe.png</PackageIcon>
17+
<PackageReadmeFile>README.md</PackageReadmeFile>
18+
<RepositoryUrl>https://github.com/selfmadecode/world.net</RepositoryUrl>
19+
<PackageTags>countries;states;regions;provinces;territories;iso;iso3166;iso3166-1;iso3166-2;geography;location;data;dataset;global;international;world</PackageTags>
20+
<PackageReleaseNotes>A comprehensive, structured dataset containing all countries and their administrative subdivisions (states, provinces, regions, and territories), designed for easy use in .NET applications.
21+
22+
This package is ideal for address handling, localization, geographic data needs, and global-ready applications.
23+
Features:
24+
Complete list of countries with
25+
- States
26+
- Provinces
27+
- Regions
28+
- Territories
29+
</PackageReleaseNotes>
30+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
31+
<Authors>selfmade</Authors>
32+
<PackageId>Countries.World.Net</PackageId>
33+
<Copyright>© 2025 SelfMadeCode. All rights reserved.</Copyright>
1234
</PropertyGroup>
35+
<ItemGroup>
36+
<None Include="..\..\LICENSE">
37+
<Pack>True</Pack>
38+
<PackagePath>\</PackagePath>
39+
</None>
40+
<None Include="..\..\README.md">
41+
<Pack>True</Pack>
42+
<PackagePath>\</PackagePath>
43+
</None>
44+
<None Include="..\globe.png">
45+
<Pack>True</Pack>
46+
<PackagePath>\</PackagePath>
47+
</None>
48+
</ItemGroup>
1349

1450
</Project>

src/globe.png

405 KB
Loading

0 commit comments

Comments
 (0)