source: trunk/yao/share/antlr-2.7.7/lib/csharp/antlr.runtime/AssemblyInfo.cs @ 1

Last change on this file since 1 was 1, checked in by lnalod, 15 years ago

Initial import of YAO sources

File size: 1.2 KB
Line 
1using System;
2using System.Reflection;
3using System.Runtime.CompilerServices;
4
5
6// General Information about an assembly is controlled through the following
7// set of attributes. Change these attribute values to modify the information
8// associated with an assembly.
9
10// TODO: Review the values of the assembly attributes
11
12[assembly: AssemblyTitle("antlr.runtime")]
13[assembly: AssemblyDescription("ANTLR Runtime for .NET")]
14[assembly: AssemblyCompany("www.antlr.org")]
15[assembly: AssemblyProduct("")]
16[assembly: AssemblyCopyright("")]
17[assembly: AssemblyTrademark("")]
18[assembly: AssemblyCulture("")]
19
20[assembly: AssemblyVersion("2.7.7.01")]
21
22
23// Version information for an assembly consists of the following four values:
24//
25//      Major Version
26//      Minor Version
27//      Revision
28//      Build Number
29//
30// You can specify all the values or you can default the Revision and Build Numbers
31// by using the '*' as shown below:
32
33[assembly: CLSCompliantAttribute(true)]
34
35#if STRONGNAME
36#pragma warning disable 1699
37[assembly: AssemblyDelaySign(false)]
38[assembly: AssemblyKeyFile("org.antlr.snk")]
39#pragma warning restore 1699
40#endif
41
42#if APTC
43[assembly: System.Security.AllowPartiallyTrustedCallers]
44#endif
Note: See TracBrowser for help on using the repository browser.