Kevin Clark | ab4460d | 2009-03-20 02:28:41 +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. |
Todd Lipcon | 53ae9f3 | 2009-12-07 00:42:38 +0000 | [diff] [blame] | 18 | * |
| 19 | * Contains some contributions under the Thrift Software License. |
| 20 | * Please see doc/old-thrift-license.txt in the Thrift distribution for |
| 21 | * details. |
Kevin Clark | ab4460d | 2009-03-20 02:28:41 +0000 | [diff] [blame] | 22 | */ |
| 23 | |
David Reiss | 7f42bcf | 2008-01-11 20:59:12 +0000 | [diff] [blame] | 24 | using System.Reflection; |
| 25 | using System.Runtime.CompilerServices; |
| 26 | using System.Runtime.InteropServices; |
| 27 | |
David Reiss | 0c90f6f | 2008-02-06 22:18:40 +0000 | [diff] [blame] | 28 | // General Information about an assembly is controlled through the following |
David Reiss | 7f42bcf | 2008-01-11 20:59:12 +0000 | [diff] [blame] | 29 | // set of attributes. Change these attribute values to modify the information |
| 30 | // associated with an assembly. |
Roger Meier | bc8109f | 2010-10-23 22:01:54 +0000 | [diff] [blame] | 31 | [assembly: AssemblyTitle("ThriftMSBuildTask")] |
| 32 | [assembly: AssemblyDescription("MSBuild Task to generate csharp from .thrift files, and compile the code into a library: ThriftImpl.dll")] |
David Reiss | 7f42bcf | 2008-01-11 20:59:12 +0000 | [diff] [blame] | 33 | [assembly: AssemblyConfiguration("")] |
Roger Meier | 2287278 | 2010-10-22 11:20:25 +0000 | [diff] [blame] | 34 | [assembly: AssemblyCompany("The Apache Software Foundation")] |
Roger Meier | bc8109f | 2010-10-23 22:01:54 +0000 | [diff] [blame] | 35 | [assembly: AssemblyProduct("ThriftMSBuildTask")] |
Roger Meier | 2287278 | 2010-10-22 11:20:25 +0000 | [diff] [blame] | 36 | [assembly: AssemblyCopyright("The Apache Software Foundation")] |
David Reiss | 7f42bcf | 2008-01-11 20:59:12 +0000 | [diff] [blame] | 37 | [assembly: AssemblyTrademark("")] |
| 38 | [assembly: AssemblyCulture("")] |
Roger Meier | 2287278 | 2010-10-22 11:20:25 +0000 | [diff] [blame] | 39 | //@TODO where to put License information? |
David Reiss | 7f42bcf | 2008-01-11 20:59:12 +0000 | [diff] [blame] | 40 | |
David Reiss | 0c90f6f | 2008-02-06 22:18:40 +0000 | [diff] [blame] | 41 | // Setting ComVisible to false makes the types in this assembly not visible |
| 42 | // to COM components. If you need to access a type in this assembly from |
David Reiss | 7f42bcf | 2008-01-11 20:59:12 +0000 | [diff] [blame] | 43 | // COM, set the ComVisible attribute to true on that type. |
| 44 | [assembly: ComVisible(false)] |
| 45 | |
| 46 | // The following GUID is for the ID of the typelib if this project is exposed to COM |
| 47 | [assembly: Guid("5095e09d-7b95-4be1-b250-e1c1db1c485e")] |
| 48 | |
| 49 | // Version information for an assembly consists of the following four values: |
| 50 | // |
| 51 | // Major Version |
David Reiss | 0c90f6f | 2008-02-06 22:18:40 +0000 | [diff] [blame] | 52 | // Minor Version |
David Reiss | 7f42bcf | 2008-01-11 20:59:12 +0000 | [diff] [blame] | 53 | // Build Number |
| 54 | // Revision |
| 55 | // |
David Reiss | 0c90f6f | 2008-02-06 22:18:40 +0000 | [diff] [blame] | 56 | // You can specify all the values or you can default the Build and Revision Numbers |
David Reiss | 7f42bcf | 2008-01-11 20:59:12 +0000 | [diff] [blame] | 57 | // by using the '*' as shown below: |
| 58 | // [assembly: AssemblyVersion("1.0.*")] |
jfarrell | 384647d | 2018-10-16 22:36:46 -0400 | [diff] [blame^] | 59 | [assembly: AssemblyVersion("0.12.0.*")] |
| 60 | [assembly: AssemblyFileVersion("0.12.0.*")] |