* Corrected small things to make Circ-git compile from within MonoDevelop
[circ.git] / Circ.Lib / AssemblyInfo.cs
blobc74cbf26ee20da06cce372a25a530ab480b8bbb5
1 #region License
2 /* Circ.Lib : main library behind Circ
3 * Copyright (C) 2007 LAVAL Jérémie
5 * This file is licensed under the terms of the LGPL.
7 * For the complete licence see the file COPYING.
8 */
9 #endregion
10 using System;
11 using System.Reflection;
12 using System.Runtime.CompilerServices;
13 using System.Runtime.InteropServices;
15 // Information about this assembly is defined by the following
16 // attributes.
18 // change them to the information which is associated with the assembly
19 // you compile.
21 [assembly: AssemblyTitle("Circ's annex Library")]
22 [assembly: AssemblyDescription("This lib contains the interface for creating Frontends,Backends and Plugins plus miscellaneous stuff")]
23 [assembly: AssemblyConfiguration("")]
24 [assembly: AssemblyCompany("")]
25 [assembly: AssemblyProduct("")]
26 [assembly: AssemblyCopyright("Copyright (C) 2007 LAVAL Jérémie")]
27 [assembly: AssemblyTrademark("")]
28 [assembly: AssemblyCulture("")]
30 [assembly: Mono.Addins.AddinRoot("Circ", "0.1")]
32 [assembly: CLSCompliant(true)]
33 [assembly: ComVisible(false)]
34 [assembly: InternalsVisibleToAttribute("Circ")]
35 [assembly: InternalsVisibleToAttribute("Tests")]
37 // The assembly version has following format :
39 // Major.Minor.Build.Revision
41 // You can specify all values by your own or you can build default build and revision
42 // numbers with the '*' character (the default):
44 [assembly: AssemblyVersion("0.1.*")]
46 // The following attributes specify the key for the sign of your assembly. See the
47 // .NET Framework documentation for more information about signing.
48 // This is not required, if you don't want signing let these attributes like they're.
49 [assembly: AssemblyDelaySign(false)]
50 [assembly: AssemblyKeyFile("")]