00001 /* 00002 [The "BSD licence"] 00003 Copyright (c) 2005-2007 Kunle Odutola 00004 All rights reserved. 00005 00006 Redistribution and use in source and binary forms, with or without 00007 modification, are permitted provided that the following conditions 00008 are met: 00009 1. Redistributions of source code MUST RETAIN the above copyright 00010 notice, this list of conditions and the following disclaimer. 00011 2. Redistributions in binary form MUST REPRODUCE the above copyright 00012 notice, this list of conditions and the following disclaimer in 00013 the documentation and/or other materials provided with the 00014 distribution. 00015 3. The name of the author may not be used to endorse or promote products 00016 derived from this software without specific prior WRITTEN permission. 00017 4. Unless explicitly state otherwise, any contribution intentionally 00018 submitted for inclusion in this work to the copyright owner or licensor 00019 shall be under the terms and conditions of this license, without any 00020 additional terms or conditions. 00021 00022 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 00023 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 00024 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 00025 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 00026 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 00027 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 00028 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 00029 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00030 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 00031 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00032 */ 00033 00034 00035 using System.Reflection; 00036 using System.Runtime.CompilerServices; 00037 using System.Runtime.InteropServices; 00038 00039 // General Information about an assembly is controlled through the following 00040 // set of attributes. Change these attribute values to modify the information 00041 // associated with an assembly. 00042 [assembly: AssemblyTitle("Antlr3.Runtime.Tests")] 00043 [assembly: AssemblyDescription("")] 00044 [assembly: AssemblyConfiguration("")] 00045 [assembly: AssemblyCompany("Toshiba")] 00046 [assembly: AssemblyProduct("Antlr3.Runtime.Tests")] 00047 [assembly: AssemblyCopyright("Copyright © Toshiba 2007")] 00048 [assembly: AssemblyTrademark("")] 00049 [assembly: AssemblyCulture("")] 00050 00051 // Setting ComVisible to false makes the types in this assembly not visible 00052 // to COM components. If you need to access a type in this assembly from 00053 // COM, set the ComVisible attribute to true on that type. 00054 [assembly: ComVisible(false)] 00055 00056 // The following GUID is for the ID of the typelib if this project is exposed to COM 00057 [assembly: Guid("e7a97455-a3e3-4877-a90b-b1b12606dac1")] 00058 00059 // Version information for an assembly consists of the following four values: 00060 // 00061 // Major Version 00062 // Minor Version 00063 // Build Number 00064 // Revision 00065 // 00066 // You can specify all the values or you can default the Revision and Build Numbers 00067 // by using the '*' as shown below: 00068 [assembly: AssemblyVersion("1.0.0.0")] 00069 [assembly: AssemblyFileVersion("1.0.0.0")]
1.5.5