aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Properties/AssemblyInfo.cs
blob: aef908214fe36161612300042b0eeec697af8333 (plain)
1
2
3
4
5
6
7
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("Tango - Logging Library")]
[assembly: AssemblyVersion("2.0.31.1608")]
[assembly: ComVisible(false)]
n> using System.Linq; using System.Linq.Expressions; using System.Reflection; using System.Text; using System.Threading; using System.Collections.Concurrent; using System.Threading.Tasks; namespace Tango.CSV { /// <summary> /// Represents an attribute for decorating properties to exclude from the CSV file. /// </summary> /// <seealso cref="System.Attribute" /> public class CsvIgnoreAttribute : Attribute { public override string ToString() { return "Ignore Property"; } } }