Skip to content
Merged
Changes from 1 commit
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/Orleans.CodeGenerator/CodeGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,8 @@ private CompoundTypeAliasComponent[] GetCompoundTypeAlias(ISymbol symbol)
AttributeArgument(typeof(CodeGenerator).Assembly.GetName().Version.ToString().GetLiteralExpression())),
Attribute(ParseName("global::System.ComponentModel.EditorBrowsableAttribute"))
.AddArgumentListArguments(
AttributeArgument(ParseName("global::System.ComponentModel.EditorBrowsableState").Member("Never")))
AttributeArgument(ParseName("global::System.ComponentModel.EditorBrowsableState").Member("Never"))),
Attribute(ParseName("global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute"))
);

internal static AttributeSyntax GetMethodImplAttributeSyntax() => MethodImplAttributeSyntax;
Expand Down
Loading