Closed NightOwl888 closed 1 month ago
Fixes #72
This removes the build features associated with .NET Standard 1.x and .NET Core 1.x.
NETSTANDARD1_X
NETCOREAPP1_X
FEATURE_CULTUREINFO_UNKNOWNLANGUAGE
FEATURE_TYPEEXTENSIONS_GETTYPEINFO
The other features defined in that section were also defined for .NET 4.5+, so they still remain in the project.
FEATURE_TYPE_GETCUSTOMATTRIBUTE_GENERIC was added to accommodate the faster generic Type.GetCustomAttribute<T>() method on supported platforms.
FEATURE_TYPE_GETCUSTOMATTRIBUTE_GENERIC
Type.GetCustomAttribute<T>()
Fixes #72
This removes the build features associated with .NET Standard 1.x and .NET Core 1.x.
NETSTANDARD1_X
NETCOREAPP1_X
FEATURE_CULTUREINFO_UNKNOWNLANGUAGE
FEATURE_TYPEEXTENSIONS_GETTYPEINFO
The other features defined in that section were also defined for .NET 4.5+, so they still remain in the project.
FEATURE_TYPE_GETCUSTOMATTRIBUTE_GENERIC
was added to accommodate the faster genericType.GetCustomAttribute<T>()
method on supported platforms.