TeamCity.VSTest.TestLogger/TagAttribute.cs (7 lines of code) (raw):
namespace TeamCity.VSTest.TestLogger;
using System;
[AttributeUsage(AttributeTargets.Parameter | AttributeTargets.Method)]
public class TagAttribute(object tag) : Attribute
{
// A tag, which will be used during an injection
public readonly object Tag = tag;
}