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