using System; using System.Diagnostics; namespace JetBrains.Annotations; [AttributeUsage(AttributeTargets.Parameter)] [Conditional("JETBRAINS_ANNOTATIONS")] internal sealed class PathReferenceAttribute : Attribute { public string BasePath { get; private set; } public PathReferenceAttribute() { } public PathReferenceAttribute(string basePath) { BasePath = basePath; } }