...
1/*
2 * Copyright 2014 Google Inc. All rights reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17using System.Reflection;
18using System.Runtime.CompilerServices;
19using System.Runtime.InteropServices;
20
21// General Information about an assembly is controlled through the following
22// set of attributes. Change these attribute values to modify the information
23// associated with an assembly.
24[assembly: AssemblyTitle("FlatBuffers.Test")]
25[assembly: AssemblyDescription("")]
26[assembly: AssemblyConfiguration("")]
27[assembly: AssemblyCompany("")]
28[assembly: AssemblyProduct("FlatBuffers.Test")]
29[assembly: AssemblyCopyright("Copyright (c) 2014 Google Inc")]
30[assembly: AssemblyTrademark("")]
31[assembly: AssemblyCulture("")]
32
33// Setting ComVisible to false makes the types in this assembly not visible
34// to COM components. If you need to access a type in this assembly from
35// COM, set the ComVisible attribute to true on that type.
36[assembly: ComVisible(false)]
37
38// The following GUID is for the ID of the typelib if this project is exposed to COM
39[assembly: Guid("a1d58a51-3e74-4ae9-aac7-5a399c9eed1a")]
40
41// Version information for an assembly consists of the following four values:
42//
43// Major Version
44// Minor Version
45// Build Number
46// Revision
47//
48// You can specify all the values or you can default the Build and Revision Numbers
49// by using the '*' as shown below:
50// [assembly: AssemblyVersion("1.0.*")]
51[assembly: AssemblyVersion("1.0.0.0")]
52[assembly: AssemblyFileVersion("1.0.0.0")]
View as plain text