The implementation in these two modules is not nullable compatible, and when the dependencies are added to a project with nullable enabled, they generate many C# errors.
Disabling nullable for the entire project is not an option.
Please either add the generated tag in the file header comments:
// <auto-generated />
Or, disable nullable checks with #nullable disable/enable, or update the code to become nullable compliant.
The implementation in these two modules is not nullable compatible, and when the dependencies are added to a project with
nullable
enabled, they generate many C# errors.Disabling
nullable
for the entire project is not an option.Please either add the generated tag in the file header comments:
Or, disable nullable checks with
#nullable disable/enable
, or update the code to become nullable compliant.