Skip to content

Commit

Permalink
Make definitions in LanguageFeatures.cs internal (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
mslukebo authored Nov 21, 2024
1 parent 5921d29 commit 74f9b78
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Microsoft.Performance.SDK.Runtime/LanguageFeatures.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ namespace System.Runtime.CompilerServices
{
internal static class IsExternalInit {}

public class ExtensionAttribute : Attribute { }
internal class ExtensionAttribute : Attribute { }

public class RequiredMemberAttribute : Attribute { }
internal class RequiredMemberAttribute : Attribute { }

public class CompilerFeatureRequiredAttribute : Attribute
internal class CompilerFeatureRequiredAttribute : Attribute
{
public CompilerFeatureRequiredAttribute(string name) { }
}
}

namespace System.Diagnostics.CodeAnalysis
{
public class SetsRequiredMembersAttribute : Attribute {}
internal class SetsRequiredMembersAttribute : Attribute {}
}

0 comments on commit 74f9b78

Please sign in to comment.