Bryan Duxbury | 96b2ccc | 2010-09-24 16:47:59 +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("CsharpClient")]
|
| 28 | [assembly: AssemblyDescription("")]
|
| 29 | [assembly: AssemblyConfiguration("")]
|
| 30 | [assembly: AssemblyCompany("")]
|
| 31 | [assembly: AssemblyProduct("CsharpClient")]
|
| 32 | [assembly: AssemblyCopyright("Copyright © 2010 The Apache Software Foundation")]
|
| 33 | [assembly: AssemblyTrademark("")]
|
| 34 | [assembly: AssemblyCulture("")]
|
| 35 |
|
| 36 | // 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
|
| 38 | // 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("1a461214-fa28-452a-bd1d-d23ca8e947e3")]
|
| 43 |
|
| 44 | // Version information for an assembly consists of the following four values:
|
| 45 | //
|
| 46 | // Major Version
|
| 47 | // Minor Version
|
| 48 | // Build Number
|
| 49 | // Revision
|
| 50 | //
|
| 51 | // You can specify all the values or you can default the Build and Revision Numbers
|
| 52 | // 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")]
|