Closed AArnott closed 2 weeks ago
Somehow this only seems to impact public
witness classes. So at least it's a very justifiable workaround, since my witness class should typically not be public anyway.
Adding XML comments seems like a reasonable thing to do here.
My project compiles with
GenerateDocumentationFile
set to true, so CS1591 flags all public APIs, even for generated code that uses// <auto-generated/>
Can you either fully document the APIs you generate (which would be ideal) or use
#pragma warning disable CS1591
at the top of your generated files to suppress these?