Skip to content

Commit

Permalink
Make CallerMemberNameAttribute internal (#100)
Browse files Browse the repository at this point in the history
Fixes #99
  • Loading branch information
jeffkl authored Jun 16, 2020
1 parent 0a880f2 commit bfadac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Microsoft.Dism/CallerMemberNameAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace System.Runtime.CompilerServices
/// Allows you to obtain the method or property name of the caller to the method.
/// </summary>
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
public class CallerMemberNameAttribute : Attribute
internal class CallerMemberNameAttribute : Attribute
{
}
}
Expand Down

0 comments on commit bfadac6

Please sign in to comment.