AssemblyInfo.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // Protocol Buffers - Google's data interchange format
  2. // Copyright 2008 Google Inc.
  3. // http://code.google.com/p/protobuf/
  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. using System.Reflection;
  17. using System.Runtime.InteropServices;
  18. // General Information about an assembly is controlled through the following
  19. // set of attributes. Change these attribute values to modify the information
  20. // associated with an assembly.
  21. [assembly: AssemblyTitle("ProtocolBuffers")]
  22. [assembly: AssemblyDescription("")]
  23. [assembly: AssemblyConfiguration("")]
  24. [assembly: AssemblyCompany("")]
  25. [assembly: AssemblyProduct("ProtocolBuffers")]
  26. [assembly: AssemblyCopyright("Copyright © 2008")]
  27. [assembly: AssemblyTrademark("")]
  28. [assembly: AssemblyCulture("")]
  29. // Setting ComVisible to false makes the types in this assembly not visible
  30. // to COM components. If you need to access a type in this assembly from
  31. // COM, set the ComVisible attribute to true on that type.
  32. [assembly: ComVisible(false)]
  33. // The following GUID is for the ID of the typelib if this project is exposed to COM
  34. [assembly: Guid("279b643d-70e8-47ae-9eb1-500d1c48bab6")]
  35. // Version information for an assembly consists of the following four values:
  36. //
  37. // Major Version
  38. // Minor Version
  39. // Build Number
  40. // Revision
  41. //
  42. // You can specify all the values or you can default the Build and Revision Numbers
  43. // by using the '*' as shown below:
  44. // [assembly: AssemblyVersion("1.0.*")]
  45. [assembly: AssemblyVersion("1.0.0.0")]
  46. [assembly: AssemblyFileVersion("1.0.0.0")]