Skip to content

Commit

Permalink
Mark IgnoreAttribute as not inherited (#4183)
Browse files Browse the repository at this point in the history
  • Loading branch information
Youssef1313 authored Nov 27, 2024
1 parent d629d7b commit 8605b32
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Microsoft.VisualStudio.TestTools.UnitTesting;
/// <summary>
/// The ignore attribute.
/// </summary>
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, Inherited = false)]
public sealed class IgnoreAttribute : Attribute
{
/// <summary>
Expand Down

0 comments on commit 8605b32

Please sign in to comment.