Problem
When consuming the Fallout source generators, the following warning is emitted at build time:
The generated ShimAllPublicTypesUnderAttribute class in ShimAllPublicTypesUnderAttribute.g.cs has an XML doc comment on the type declaration that uses <paramref> tags to reference constructor parameters. In C#, <paramref> at the type level can only reference type parameters (generic parameters), not constructor parameters - hence CS1734:
Fix
Replace <paramref name="..."/> with <c>...</c> inline code tags in the attribute's XML doc comment. The generated source lives as a raw string in TransitionShimGenerator.cs.
Problem
When consuming the Fallout source generators, the following warning is emitted at build time:
The generated
ShimAllPublicTypesUnderAttributeclass inShimAllPublicTypesUnderAttribute.g.cshas an XML doc comment on the type declaration that uses<paramref>tags to reference constructor parameters. In C#,<paramref>at the type level can only reference type parameters (generic parameters), not constructor parameters - hence CS1734:Fix
Replace
<paramref name="..."/>with<c>...</c>inline code tags in the attribute's XML doc comment. The generated source lives as a raw string inTransitionShimGenerator.cs.