blob: d79c2039f36bfadcc910fc99e07deb04383b17ac [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.
18 */
19
David Reiss7f42bcf2008-01-11 20:59:12 +000020using System.Reflection;
21using System.Runtime.CompilerServices;
22using System.Runtime.InteropServices;
23
David Reiss0c90f6f2008-02-06 22:18:40 +000024// General Information about an assembly is controlled through the following
David Reiss7f42bcf2008-01-11 20:59:12 +000025// set of attributes. Change these attribute values to modify the information
26// associated with an assembly.
27[assembly: AssemblyTitle("ThriftMSBuildTask")]
28[assembly: AssemblyDescription("")]
29[assembly: AssemblyConfiguration("")]
30[assembly: AssemblyCompany("")]
31[assembly: AssemblyProduct("ThriftMSBuildTask")]
David Reiss63191332009-01-06 19:49:22 +000032[assembly: AssemblyCopyright("Copyright © 2009 The Apache Software Foundation")]
David Reiss7f42bcf2008-01-11 20:59:12 +000033[assembly: AssemblyTrademark("")]
34[assembly: AssemblyCulture("")]
35
David Reiss0c90f6f2008-02-06 22:18:40 +000036// Setting ComVisible to false makes the types in this assembly not visible
37// to COM components. If you need to access a type in this assembly from
David Reiss7f42bcf2008-01-11 20:59:12 +000038// COM, set the ComVisible attribute to true on that type.
39[assembly: ComVisible(false)]
40
41// The following GUID is for the ID of the typelib if this project is exposed to COM
42[assembly: Guid("5095e09d-7b95-4be1-b250-e1c1db1c485e")]
43
44// Version information for an assembly consists of the following four values:
45//
46// Major Version
David Reiss0c90f6f2008-02-06 22:18:40 +000047// Minor Version
David Reiss7f42bcf2008-01-11 20:59:12 +000048// Build Number
49// Revision
50//
David Reiss0c90f6f2008-02-06 22:18:40 +000051// You can specify all the values or you can default the Build and Revision Numbers
David Reiss7f42bcf2008-01-11 20:59:12 +000052// by using the '*' as shown below:
53// [assembly: AssemblyVersion("1.0.*")]
54[assembly: AssemblyVersion("1.0.0.0")]
55[assembly: AssemblyFileVersion("1.0.0.0")]