39 lines
1.5 KiB
C#
39 lines
1.5 KiB
C#
/* ========================================================================
|
|
* Copyright (c) 2005-2020 The OPC Foundation, Inc. All rights reserved.
|
|
*
|
|
* OPC Reciprocal Community License ("RCL") Version 1.00
|
|
*
|
|
* Unless explicitly acquired and licensed from Licensor under another
|
|
* license, the contents of this file are subject to the Reciprocal
|
|
* Community License ("RCL") Version 1.00, or subsequent versions
|
|
* as allowed by the RCL, 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 RCL.
|
|
*
|
|
* All software distributed under the RCL 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 RCL for specific
|
|
* language governing rights and limitations under the RCL.
|
|
*
|
|
* The complete license agreement can be found here:
|
|
* http://opcfoundation.org/License/RCL/1.00/
|
|
* ======================================================================*/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
/// <summary>
|
|
/// Defines string constants for SDK version information.
|
|
/// </summary>
|
|
internal static class AssemblyVersionInfo
|
|
{
|
|
/// <summary>
|
|
/// The current copy right notice.
|
|
/// </summary>
|
|
public const string Copyright = "Copyright © 2004-2020 OPC Foundation, Inc";
|
|
|
|
}
|