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 22 // Information about this assembly is defined by the following attributes. 23 // Change them to the values specific to your project. 24 [assembly: AssemblyTitle("GreeterServer")] 25 [assembly: AssemblyDescription("")] 26 [assembly: AssemblyConfiguration("")] 27 [assembly: AssemblyCompany("")] 28 [assembly: AssemblyProduct("")] 29 [assembly: AssemblyCopyright("jtattermusch")] 30 [assembly: AssemblyTrademark("")] 31 [assembly: AssemblyCulture("")] 32 // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". 33 // The form "{Major}.{Minor}.*" will automatically update the build and revision, 34 // and "{Major}.{Minor}.{Build}.*" will update just the revision. 35 [assembly: AssemblyVersion("1.0.*")] 36 // The following attributes are used to specify the signing key for the assembly, 37 // if desired. See the Mono documentation for more information about signing. 38 //[assembly: AssemblyDelaySign(false)] 39 //[assembly: AssemblyKeyFile("")] 40 41