mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-22 07:58:49 +00:00
chore: make attributes internal
This commit is contained in:
parent
7556efdfdd
commit
ce35f8676e
4
tools/X10D.MetaServices/Assembly.cs
Normal file
4
tools/X10D.MetaServices/Assembly.cs
Normal file
@ -0,0 +1,4 @@
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly: InternalsVisibleTo("X10D")]
|
||||
[assembly: InternalsVisibleTo("SourceGenerator")]
|
@ -1,6 +1,6 @@
|
||||
namespace X10D.MetaServices;
|
||||
|
||||
[AttributeUsage(AttributeTargets.Method, Inherited = false)]
|
||||
public sealed class AutoOverloadAttribute : Attribute
|
||||
internal sealed class AutoOverloadAttribute : Attribute
|
||||
{
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
namespace X10D.MetaServices;
|
||||
|
||||
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Parameter | AttributeTargets.ReturnValue, Inherited = false)]
|
||||
public sealed class OverloadTypeAttribute : Attribute
|
||||
internal sealed class OverloadTypeAttribute : Attribute
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="OverloadTypeAttribute"/> class.
|
||||
|
Loading…
Reference in New Issue
Block a user