/******************************************************** * ADO.NET 2.0 Data Provider for SQLite Version 3.X * Written by Joe Mistachkin (joe@mistachkin.com) * * Released to the public domain, use at your own risk! ********************************************************/ using System; namespace System.Data.SQLite { /// /// Defines a source code identifier custom attribute for an assembly /// manifest. /// [AttributeUsage(AttributeTargets.Assembly, Inherited = false)] public sealed class AssemblySourceIdAttribute : Attribute { /// /// Constructs an instance of this attribute class using the specified /// source code identifier value. /// /// /// The source code identifier value to use. /// public AssemblySourceIdAttribute(string value) { sourceId = value; } /////////////////////////////////////////////////////////////////////// private string sourceId; /// /// Gets the source code identifier value. /// public string SourceId { get { return sourceId; } } } }