summary refs log tree commit diff
diff options
context:
space:
mode:
authorOren Novotny <oren@novotny.org>2018-06-11 22:26:25 -0400
committerOren Novotny <oren@novotny.org>2018-06-11 22:27:20 -0400
commita3ffe975eb92433d26335113464bf6c389f7b271 (patch)
treeeac1e73e119a5109b36d546e7e12a1fc5e0f8a01
parentstamp full commit hash in assembly (diff)
downloadBouncyCastle.NET-ed25519-a3ffe975eb92433d26335113464bf6c389f7b271.tar.xz
add metadata attrib for net4
-rw-r--r--crypto/src/AssemblyInfo.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/crypto/src/AssemblyInfo.cs b/crypto/src/AssemblyInfo.cs

index 022895b0a..43935c8dc 100644 --- a/crypto/src/AssemblyInfo.cs +++ b/crypto/src/AssemblyInfo.cs
@@ -61,3 +61,28 @@ internal class AssemblyInfo } } } + + +#if NET40 +// 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. + +namespace System.Reflection +{ + [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true, Inherited = false)] + internal sealed class AssemblyMetadataAttribute : Attribute + { + public AssemblyMetadataAttribute(string key, string value) + { + Key = key; + Value = value; + } + + public string Key { get; } + + public string Value { get; } + } +} + +#endif \ No newline at end of file