blob: 19abcf7be13432e77366d4c8c62606ce4580b381 [file] [log] [blame]
Kevin Clarkab4460d2009-03-20 02:28:41 +00001/**
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 Lipcon53ae9f32009-12-07 00:42:38 +000018 *
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 Clarkab4460d2009-03-20 02:28:41 +000022 */
23
David Reiss7f42bcf2008-01-11 20:59:12 +000024using System.Reflection;
25using System.Runtime.CompilerServices;
26using System.Runtime.InteropServices;
27
David Reiss0c90f6f2008-02-06 22:18:40 +000028// General Information about an assembly is controlled through the following
David Reiss7f42bcf2008-01-11 20:59:12 +000029// set of attributes. Change these attribute values to modify the information
30// associated with an assembly.
Roger Meierbc8109f2010-10-23 22:01:54 +000031[assembly: AssemblyTitle("ThriftMSBuildTask")]
32[assembly: AssemblyDescription("MSBuild Task to generate csharp from .thrift files, and compile the code into a library: ThriftImpl.dll")]
David Reiss7f42bcf2008-01-11 20:59:12 +000033[assembly: AssemblyConfiguration("")]
Roger Meier22872782010-10-22 11:20:25 +000034[assembly: AssemblyCompany("The Apache Software Foundation")]
Roger Meierbc8109f2010-10-23 22:01:54 +000035[assembly: AssemblyProduct("ThriftMSBuildTask")]
Roger Meier22872782010-10-22 11:20:25 +000036[assembly: AssemblyCopyright("The Apache Software Foundation")]
David Reiss7f42bcf2008-01-11 20:59:12 +000037[assembly: AssemblyTrademark("")]
38[assembly: AssemblyCulture("")]
Roger Meier22872782010-10-22 11:20:25 +000039//@TODO where to put License information?
David Reiss7f42bcf2008-01-11 20:59:12 +000040
David Reiss0c90f6f2008-02-06 22:18:40 +000041// 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 Reiss7f42bcf2008-01-11 20:59:12 +000043// 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 Reiss0c90f6f2008-02-06 22:18:40 +000052// Minor Version
David Reiss7f42bcf2008-01-11 20:59:12 +000053// Build Number
54// Revision
55//
David Reiss0c90f6f2008-02-06 22:18:40 +000056// You can specify all the values or you can default the Build and Revision Numbers
David Reiss7f42bcf2008-01-11 20:59:12 +000057// by using the '*' as shown below:
58// [assembly: AssemblyVersion("1.0.*")]
jfarrell384647d2018-10-16 22:36:46 -040059[assembly: AssemblyVersion("0.12.0.*")]
60[assembly: AssemblyFileVersion("0.12.0.*")]