Microsoft.CodeAnalysis.EmbeddedAttribute
A special attribute recognized by Roslyn, that marks a type as "embedded", meaning it won't ever be visible from other assemblies.
namespace Microsoft.CodeAnalysis
{
internal sealed class EmbeddedAttribute : Attribute
{
public EmbeddedAttribute();
}
}