Skip to content

Commit d5f46f3

Browse files
committed
update package name
1 parent 1bf5040 commit d5f46f3

File tree

2 files changed

+57
-1
lines changed

2 files changed

+57
-1
lines changed

Naija.Grid.Net.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{C3C8E3D8-8BE
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Naija.Grid.Net", "Naija.Grid.Net", "{EB8A4CEA-73E1-4062-A17D-62CBF2A4381D}"
99
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Naija.Grid.Net", "src\Naija.Grid.Net\Naija.Grid.Net.csproj", "{77D06D10-5BE9-44F1-B34B-5DF7ACB4F15D}"
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Naija.LGA.Net", "src\Naija.Grid.Net\Naija.LGA.Net.csproj", "{77D06D10-5BE9-44F1-B34B-5DF7ACB4F15D}"
1111
EndProject
1212
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Naija.Grid.App", "Naija.Grid.App\Naija.Grid.App.csproj", "{B7301CC7-3DEC-479E-AC79-7A19BB229B9D}"
1313
EndProject
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
<Title>Nigerian States and LGAs</Title>
6+
<Authors>selfmadecode</Authors>
7+
<Description>A lightweight library designed to provide information about Nigerian states and their respective Local Government Areas (LGAs).</Description>
8+
<PackageProjectUrl>https://github.com/selfmadecode/Naija.LGA.Net</PackageProjectUrl>
9+
<PackageReadmeFile>README.md</PackageReadmeFile>
10+
<RepositoryUrl>https://github.com/selfmadecode/Naija.LGA.Net</RepositoryUrl>
11+
<PackageTags>LGA;Nigeria; States and LGAs; Nigerian Geography; Local Government Areas; State Information; Geographic Data; Nigerian Development; LGA Lookup; State</PackageTags>
12+
<PackageReleaseNotes>Version 1.0.0
13+
Initial Release
14+
15+
- Features:
16+
- Comprehensive data set of Nigeria's states and their respective LGAs.
17+
- Retrieve a list of all states using `GetStates`.
18+
- Fetch details of a specific state using its ID or name with `GetState`.
19+
- Optimized for simplicity and ease of integration into applications.
20+
- Designed to support applications requiring Nigerian geographic data.
21+
22+
- Usage Examples:
23+
var states = NaijaLGA.GetStates();
24+
Console.WriteLine(states.Count());
25+
26+
var state = NaijaLGA.GetState(36);
27+
var imo = NaijaLGA.GetState("Imo");
28+
29+
30+
- Future Enhancements:
31+
- Addition of utility methods for more specific queries.
32+
- Potential integration of population and demographic data.
33+
- API support for dynamic data fetching.
34+
35+
</PackageReleaseNotes>
36+
<PackageIcon>naijagridicon.png</PackageIcon>
37+
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
38+
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
39+
</PropertyGroup>
40+
41+
<ItemGroup>
42+
<None Include="..\..\LICENSE.txt">
43+
<Pack>True</Pack>
44+
<PackagePath>\</PackagePath>
45+
</None>
46+
<None Include="..\..\naijagridicon.png">
47+
<Pack>True</Pack>
48+
<PackagePath>\</PackagePath>
49+
</None>
50+
<None Include="..\..\README.md">
51+
<Pack>True</Pack>
52+
<PackagePath>\</PackagePath>
53+
</None>
54+
</ItemGroup>
55+
56+
</Project>

0 commit comments

Comments
 (0)