|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <!-- Target Frameworks - Modern .NET --> |
5 | | - <TargetFrameworks>netstandard2.1;net8.0;net9.0;net10.0</TargetFrameworks> |
| 4 | + <!-- Target Frameworks - Broad compatibility (.NET Standard 2.0 works with .NET Framework 4.6.1+, .NET Core 2.0+, Unity, Xamarin) --> |
| 5 | + <TargetFrameworks>netstandard2.0;net6.0;net8.0;net10.0</TargetFrameworks> |
6 | 6 | <LangVersion>latest</LangVersion> |
7 | 7 | <ImplicitUsings>enable</ImplicitUsings> |
8 | 8 | <Nullable>enable</Nullable> |
@@ -49,8 +49,9 @@ Initial release v1.0.0: |
49 | 49 | - Full CultureInfo and RegionInfo integration |
50 | 50 | - O(1) dictionary lookups with lazy-loaded caches |
51 | 51 | - Thread-safe operations with immutable data collections |
52 | | -- Zero external dependencies |
53 | | -- Multi-framework support (.NET Standard 2.1, .NET 8-10) |
| 52 | +- Minimal external dependencies (only System.Text.Json) |
| 53 | +- Multi-framework support (.NET Standard 2.0+, .NET 6, 8, 10) |
| 54 | +- Works with .NET Framework 4.6.1+, .NET Core 2.0+, Unity, Xamarin |
54 | 55 | - Built-in dependency injection support via CountryData.Globalization.Hosting package |
55 | 56 | </PackageReleaseNotes> |
56 | 57 |
|
@@ -97,6 +98,7 @@ Initial release v1.0.0: |
97 | 98 |
|
98 | 99 | <!-- Package References from Central Package Management --> |
99 | 100 | <ItemGroup> |
| 101 | + <PackageReference Include="System.Text.Json" /> |
100 | 102 | <PackageReference Include="MinVer" PrivateAssets="All" /> |
101 | 103 | <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> |
102 | 104 | </ItemGroup> |
|
0 commit comments