diff options
Diffstat (limited to 'src/mscorlib/src/System/Resources/SatelliteContractVersionAttribute.cs')
-rw-r--r-- | src/mscorlib/src/System/Resources/SatelliteContractVersionAttribute.cs | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/mscorlib/src/System/Resources/SatelliteContractVersionAttribute.cs b/src/mscorlib/src/System/Resources/SatelliteContractVersionAttribute.cs deleted file mode 100644 index 86e972efdd..0000000000 --- a/src/mscorlib/src/System/Resources/SatelliteContractVersionAttribute.cs +++ /dev/null @@ -1,38 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -/*============================================================ -** -** -** -** -** -** Purpose: Specifies which version of a satellite assembly -** the ResourceManager should ask for. -** -** -===========================================================*/ - -namespace System.Resources { - using System; - using System.Diagnostics.Contracts; - - [AttributeUsage(AttributeTargets.Assembly, AllowMultiple=false)] - public sealed class SatelliteContractVersionAttribute : Attribute - { - private String _version; - - public SatelliteContractVersionAttribute(String version) - { - if (version == null) - throw new ArgumentNullException(nameof(version)); - Contract.EndContractBlock(); - _version = version; - } - - public String Version { - get { return _version; } - } - } -} |