Skip to content

Commit

Permalink
Merge pull request #1482 from Humanizr/drop-net462-and-net472
Browse files Browse the repository at this point in the history
  • Loading branch information
clairernovotny authored Mar 8, 2024
2 parents a3211ff + 5d78bc8 commit ea34d30
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ You can install Humanizer as [a nuget package](https://nuget.org/packages/Humani

All languages: `Humanizer`

Humanizer is a .NET Standard Class Library with support for .NET Standard 1.0+ (.Net 4.5+, UWP, Xamarin, and .NET Core).

### Supported frameworks

The following frameworks are supported: net4.8, net6, net7, and net8

Note: The nuget also targets netstandard2. This is to enable scenario where netstandard2 is required. For example Roslyn Analyzers or MSBuil tasks. Other frameworks (other than listed above) that can consume netstandard2 (example net4.6.1 through to net 4.7.2) are not supported. For example net4.6.1 through to net4.7.2 are not supported.

Also Humanizer symbols are source indexed with [SourceLink](https://github.com/dotnet/sourcelink) and are included in the package so you can step through Humanizer code while debugging your code.

Expand Down
2 changes: 1 addition & 1 deletion src/Humanizer/Humanizer.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462;net472;net48;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net48;net6.0;net7.0;net8.0</TargetFrameworks>
<Authors>Mehdi Khalili, Claire Novotny</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Humanizr/Humanizer</PackageProjectUrl>
Expand Down

0 comments on commit ea34d30

Please sign in to comment.