Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/dotnetCampus.CodeAnalysisUtils/GeneratorInfo.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ public static string ToGlobalTypeOfDisplayString(this INamedTypeSymbol symbol)
/// </summary>
/// <param name="builder"></param>
/// <returns></returns>
public static IAllowAttributes AddGeneratedToolAndEditorBrowsingAttributes(this IAllowAttributes builder)
public static T AddGeneratedToolAndEditorBrowsingAttributes<T>(this T builder)
where T : IAllowAttributes
{
return builder
.AddAttribute("[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]")
Expand Down
Loading