Enum.Source.Generator
Enum.Source.Generator copied to clipboard
A C# source generator to create an enumeration class from an enum type. With this package, you can work on enums very, very fast without using reflection.
Bumps [Microsoft.CodeAnalysis.NetAnalyzers](https://github.com/dotnet/roslyn-analyzers) from 6.0.0 to 7.0.3. Release notes Sourced from Microsoft.CodeAnalysis.NetAnalyzers's releases. NetAnalyzers 7.0.1 Release build of Microsoft.CodeAnalysis.NetAnalyzers containing first-party code quality analyzers ("CAxxxx rules"). Contains bug fixes on top...
Bumps [coverlet.collector](https://github.com/coverlet-coverage/coverlet) from 3.1.2 to 6.0.0. Release notes Sourced from coverlet.collector's releases. v6.0.0 Fixed -Could not write lines to file CoverletSourceRootsMapping - in use by another process coverlet-coverage/coverlet#1155 -Incorrect coverage...
Bumps [Microsoft.CodeAnalysis.CSharp](https://github.com/dotnet/roslyn) from 4.2.0 to 4.6.0. Release notes Sourced from Microsoft.CodeAnalysis.CSharp's releases. .NET 6.0.1 Release .NET 5.0.4 Release .NET 5.0.2 Release Notes Install Instructions Repos Core Changelog Sourced from Microsoft.CodeAnalysis.CSharp's...
Bumps [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 6.7.0 to 6.11.0. Release notes Sourced from FluentAssertions's releases. 6.11.0 What's Changed New features Added ThrowWithinAsync assertions by @lg2de in fluentassertions/fluentassertions#1974 Add WithoutStrictOrderingFor overload with an expression...
Bumps [xunit.analyzers](https://github.com/xunit/xunit.analyzers) from 1.11.0 to 1.13.0. Commits 2a2dcdf v1.13.0 67b39bb Update missing async check, and update wording to be clearer 2397d14 Add analyzers to suggest (v2)/require (v3) not using 'async...
Bumps [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 3.2.2 to 3.3.1. Release notes Sourced from MSTest.TestAdapter's releases. v3.3.1 See the release notes here v3.3.0 See the release notes here. Changelog Sourced from MSTest.TestAdapter's changelog. [3.3.1]...
Bumps [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.2.2 to 3.3.1. Release notes Sourced from MSTest.TestFramework's releases. v3.3.1 See the release notes here v3.3.0 See the release notes here. Changelog Sourced from MSTest.TestFramework's changelog. [3.3.1]...
Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) from 2.5.7 to 2.8.0. Commits 6438bb8 v2.8.0 2afd4cd Pick up latest dependencies b8be108 Add multiplier format support to RunSettings 3c2e493 Update to 2.7.2-pre.17 and support Xunit.ParallelAlgorithm in RunSetttings...
Bumps [xunit](https://github.com/xunit/xunit) from 2.7.0 to 2.8.0. Commits be260b3 v2.8.0 a8ceb66 #783: Add -useansicolor flag to console runner (v2) 7b0ff93 Don't show /aggressive with unlimited threads 46cdf06 Support parallel algorithm in...
Enum.TryParse has two overloads which are: ```cs public static bool TryParse(ReadOnlySpan value, out TEnum result) public static bool TryParse([NotNullWhen(true)] string? value, bool ignoreCase, out TEnum result) ``` so I add...