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