├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── Directory.Build.props ├── Generate-ReleaseNotes.cmd ├── LICENSE ├── PackageReadme.md ├── README.md ├── System.Text.Json.EnumExtensions Solution.sln ├── System.Text.Json.EnumExtensions Solution.sln.DotSettings ├── azure-pipelines.yml ├── examples └── ConsoleApp │ ├── ConsoleApp.csproj │ └── Program.cs └── src └── System.Text.Json.EnumExtensions ├── JsonHelpers.cs ├── Serialization ├── Converters │ ├── EnumConverterOptions.cs │ └── JsonValueConverterEnumWithAttributeSupport.cs ├── JsonDefaultNamingPolicy.cs ├── JsonStringEnumConverterWithAttributeSupport.cs └── JsonStringEnumConverterWithAttributeSupport`1.cs └── System.Text.Json.EnumExtensions.csproj /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Generate-ReleaseNotes.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/Generate-ReleaseNotes.cmd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/LICENSE -------------------------------------------------------------------------------- /PackageReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/PackageReadme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/README.md -------------------------------------------------------------------------------- /System.Text.Json.EnumExtensions Solution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/System.Text.Json.EnumExtensions Solution.sln -------------------------------------------------------------------------------- /System.Text.Json.EnumExtensions Solution.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/System.Text.Json.EnumExtensions Solution.sln.DotSettings -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /examples/ConsoleApp/ConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/examples/ConsoleApp/ConsoleApp.csproj -------------------------------------------------------------------------------- /examples/ConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/examples/ConsoleApp/Program.cs -------------------------------------------------------------------------------- /src/System.Text.Json.EnumExtensions/JsonHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/src/System.Text.Json.EnumExtensions/JsonHelpers.cs -------------------------------------------------------------------------------- /src/System.Text.Json.EnumExtensions/Serialization/Converters/EnumConverterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/src/System.Text.Json.EnumExtensions/Serialization/Converters/EnumConverterOptions.cs -------------------------------------------------------------------------------- /src/System.Text.Json.EnumExtensions/Serialization/Converters/JsonValueConverterEnumWithAttributeSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/src/System.Text.Json.EnumExtensions/Serialization/Converters/JsonValueConverterEnumWithAttributeSupport.cs -------------------------------------------------------------------------------- /src/System.Text.Json.EnumExtensions/Serialization/JsonDefaultNamingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/src/System.Text.Json.EnumExtensions/Serialization/JsonDefaultNamingPolicy.cs -------------------------------------------------------------------------------- /src/System.Text.Json.EnumExtensions/Serialization/JsonStringEnumConverterWithAttributeSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/src/System.Text.Json.EnumExtensions/Serialization/JsonStringEnumConverterWithAttributeSupport.cs -------------------------------------------------------------------------------- /src/System.Text.Json.EnumExtensions/Serialization/JsonStringEnumConverterWithAttributeSupport`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/src/System.Text.Json.EnumExtensions/Serialization/JsonStringEnumConverterWithAttributeSupport`1.cs -------------------------------------------------------------------------------- /src/System.Text.Json.EnumExtensions/System.Text.Json.EnumExtensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefH/System.Text.Json.EnumExtensions/HEAD/src/System.Text.Json.EnumExtensions/System.Text.Json.EnumExtensions.csproj --------------------------------------------------------------------------------