blob: f5f00005976b95939696860387ee4adacef2baa8 [file] [log] [blame]
Jens Geyerb89316d2020-02-28 19:22:34 +01001/**
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 * Contains some contributions under the Thrift Software License.
20 * Please see doc/old-thrift-license.txt in the Thrift distribution for
21 * details.
22 */
23
24using System.Reflection;
25using System.Runtime.CompilerServices;
26using System.Runtime.InteropServices;
27
28// General Information about an assembly is controlled through the following
29// set of attributes. Change these attribute values to modify the information
30// associated with an assembly.
31[assembly: AssemblyTitle("ThriftMSBuildTask")]
32[assembly: AssemblyDescription("MSBuild Task to generate csharp from .thrift files, and compile the code into a library: ThriftImpl.dll")]
33[assembly: AssemblyConfiguration("")]
34[assembly: AssemblyCompany("The Apache Software Foundation")]
35[assembly: AssemblyProduct("ThriftMSBuildTask")]
36[assembly: AssemblyCopyright("The Apache Software Foundation")]
37[assembly: AssemblyTrademark("")]
38[assembly: AssemblyCulture("")]
39//@TODO where to put License information?
40
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
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
52// Minor Version
53// Build Number
54// Revision
55//
56// You can specify all the values or you can default the Build and Revision Numbers
57// by using the '*' as shown below:
58// [assembly: AssemblyVersion("1.0.*")]
59[assembly: AssemblyVersion("0.14.0.*")]
60[assembly: AssemblyFileVersion("0.14.0.*")]