AssemblyInfo.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /******************************************************************************
  2. ** Copyright (c) 2006-2018 Unified Automation GmbH All rights reserved.
  3. **
  4. ** Software License Agreement ("SLA") Version 2.7
  5. **
  6. ** Unless explicitly acquired and licensed from Licensor under another
  7. ** license, the contents of this file are subject to the Software License
  8. ** Agreement ("SLA") Version 2.7, or subsequent versions
  9. ** as allowed by the SLA, and You may not copy or use this file in either
  10. ** source code or executable form, except in compliance with the terms and
  11. ** conditions of the SLA.
  12. **
  13. ** All software distributed under the SLA is provided strictly on an
  14. ** "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED,
  15. ** AND LICENSOR HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT
  16. ** LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  17. ** PURPOSE, QUIET ENJOYMENT, OR NON-INFRINGEMENT. See the SLA for specific
  18. ** language governing rights and limitations under the SLA.
  19. **
  20. ** Project: .NET based OPC UA Client Server SDK
  21. **
  22. ** Description: OPC Unified Architecture Software Development Kit.
  23. **
  24. ** The complete license agreement can be found here:
  25. ** http://unifiedautomation.com/License/SLA/2.7/
  26. ******************************************************************************/
  27. using System.Reflection;
  28. using System.Runtime.CompilerServices;
  29. using System.Runtime.InteropServices;
  30. // General Information about an assembly is controlled through the following
  31. // set of attributes. Change these attribute values to modify the information
  32. // associated with an assembly.
  33. [assembly: AssemblyTitle("UnifiedAutomation.ServerGettingStarted")]
  34. [assembly: AssemblyDescription(".NET Server Lesson 03")]
  35. [assembly: AssemblyConfiguration("")]
  36. [assembly: AssemblyCompany("Unified Automation GmbH")]
  37. [assembly: AssemblyProduct(".NET based OPC UA Server SDK")]
  38. [assembly: AssemblyCopyright("Copyright © 2011-2018 Unified Automation, GmbH")]
  39. [assembly: AssemblyTrademark("")]
  40. [assembly: AssemblyCulture("")]
  41. // Setting ComVisible to false makes the types in this assembly not visible
  42. // to COM components. If you need to access a type in this assembly from
  43. // COM, set the ComVisible attribute to true on that type.
  44. [assembly: ComVisible(false)]
  45. // The following GUID is for the ID of the typelib if this project is exposed to COM
  46. [assembly: Guid("8daba94b-367d-4bad-bba6-0210364a9cd8")]
  47. // Version information for an assembly consists of the following four values:
  48. //
  49. // Major Version
  50. // Minor Version
  51. // Build Number
  52. // Revision
  53. //
  54. // You can specify all the values or you can default the Build and Revision Numbers
  55. // by using the '*' as shown below:
  56. // [assembly: AssemblyVersion("1.0.*")]
  57. [assembly: AssemblyVersion("2.6.1.0")]
  58. [assembly: AssemblyFileVersion("2.6.1.422_EVAL")]