Since I regenerate the client code with each compile of my automation tests, it would be helpful, if there was a flag that would automatically add:
#prama warning disable CS8618
and
#pragma warning restore CS8618
to the beginning and end of the generated client file.
To avoid this, I currently have my own console application that directly calls GraphQLGenerator.ToCSharp() and I prepend and append the pragma statements myself. Thanks.
Since I regenerate the client code with each compile of my automation tests, it would be helpful, if there was a flag that would automatically add:
#prama warning disable CS8618
and#pragma warning restore CS8618
to the beginning and end of the generated client file.To avoid this, I currently have my own console application that directly calls GraphQLGenerator.ToCSharp() and I prepend and append the pragma statements myself. Thanks.