/****************************************************************************** ** Copyright (c) 2006-2018 Unified Automation GmbH All rights reserved. ** ** Software License Agreement ("SLA") Version 2.7 ** ** Unless explicitly acquired and licensed from Licensor under another ** license, the contents of this file are subject to the Software License ** Agreement ("SLA") Version 2.7, or subsequent versions ** as allowed by the SLA, and You may not copy or use this file in either ** source code or executable form, except in compliance with the terms and ** conditions of the SLA. ** ** All software distributed under the SLA is provided strictly on an ** "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, ** AND LICENSOR HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT ** LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR ** PURPOSE, QUIET ENJOYMENT, OR NON-INFRINGEMENT. See the SLA for specific ** language governing rights and limitations under the SLA. ** ** Project: .NET based OPC UA Client Server SDK ** ** Description: OPC Unified Architecture Software Development Kit. ** ** The complete license agreement can be found here: ** http://unifiedautomation.com/License/SLA/2.7/ ******************************************************************************/ using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("UnifiedAutomation.ServerGettingStarted")] [assembly: AssemblyDescription(".NET Server Lesson 03")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Unified Automation GmbH")] [assembly: AssemblyProduct(".NET based OPC UA Server SDK")] [assembly: AssemblyCopyright("Copyright © 2011-2018 Unified Automation, GmbH")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("8daba94b-367d-4bad-bba6-0210364a9cd8")] // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("2.6.1.0")] [assembly: AssemblyFileVersion("2.6.1.422_EVAL")]