|
| 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