Roger Meier | 56b6e32 | 2010-10-23 22:16:51 +0000 | [diff] [blame^] | 1 | /** |
| 2 | * Licensed to the Apache Software Foundation (ASF) under one |
| 3 | * or more contributor license agreements. See the NOTICE file |
| 4 | * distributed with this work for additional information |
| 5 | * regarding copyright ownership. The ASF licenses this file |
| 6 | * to you under the Apache License, Version 2.0 (the |
| 7 | * "License"); you may not use this file except in compliance |
| 8 | * with the License. You may obtain a copy of the License at |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, |
| 13 | * software distributed under the License is distributed on an |
| 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | * KIND, either express or implied. See the License for the |
| 16 | * specific language governing permissions and limitations |
| 17 | * under the License.
|
| 18 | */
|
| 19 |
|
| 20 | using System.Reflection;
|
| 21 | using System.Runtime.CompilerServices;
|
| 22 | using System.Runtime.InteropServices;
|
| 23 |
|
| 24 | // General Information about an assembly is controlled through the following
|
| 25 | // set of attributes. Change these attribute values to modify the information
|
| 26 | // associated with an assembly.
|
| 27 | [assembly: AssemblyTitle("Thrift")]
|
| 28 | [assembly: AssemblyDescription("C# bindings for the Apache Thrift RPC system")]
|
| 29 | [assembly: AssemblyConfiguration("")]
|
| 30 | [assembly: AssemblyCompany("The Apache Software Foundation")]
|
| 31 | [assembly: AssemblyProduct("Thrift")]
|
| 32 | [assembly: AssemblyCopyright("The Apache Software Foundation")]
|
| 33 | [assembly: AssemblyTrademark("")]
|
| 34 | [assembly: AssemblyCulture("")]
|
| 35 | //@TODO where to put License information?
|
| 36 |
|
| 37 | // Setting ComVisible to false makes the types in this assembly not visible
|
| 38 | // to COM components. If you need to access a type in this assembly from
|
| 39 | // COM, set the ComVisible attribute to true on that type.
|
| 40 | [assembly: ComVisible(false)]
|
| 41 |
|
| 42 | // The following GUID is for the ID of the typelib if this project is exposed to COM
|
| 43 | [assembly: Guid("df3f8ef0-e0a3-4c86-a65b-8ec84e016b1d")]
|
| 44 |
|
| 45 | // Version information for an assembly consists of the following four values:
|
| 46 | //
|
| 47 | // Major Version
|
| 48 | // Minor Version
|
| 49 | // Build Number
|
| 50 | // Revision
|
| 51 | //
|
| 52 | // You can specify all the values or you can default the Build and Revision Numbers
|
| 53 | // by using the '*' as shown below:
|
| 54 | // [assembly: AssemblyVersion("1.0.*")]
|
| 55 | [assembly: AssemblyVersion("0.6.0.*")]
|
| 56 | [assembly: AssemblyFileVersion("0.6.0.*")] |