-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathWorld.Net.csproj
More file actions
50 lines (47 loc) · 1.95 KB
/
World.Net.csproj
File metadata and controls
50 lines (47 loc) · 1.95 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
<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>A comprehensive, structured dataset containing all countries and their administrative subdivisions (states, provinces, regions, and territories), designed for easy use in .NET applications.
This package is ideal for address handling, localization, geographic data needs, and global-ready applications.
Features:
Complete list of countries with
- States
- Provinces
- Regions
- Territories
</PackageReleaseNotes>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Authors>selfmade</Authors>
<PackageId>Countries.World.Net</PackageId>
<Copyright>© 2025 SelfMadeCode. All rights reserved.</Copyright>
</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>