blob: 568ecf594df4a8e424c72f01e299de89bd1b0401 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
#if PORTABLE
using System.Linq;
#else
using System.Runtime.InteropServices;
#endif
[assembly: CLSCompliant(true)]
#if !PORTABLE
[assembly: ComVisible(false)]
#endif
// Start with no permissions
//[assembly: PermissionSet(SecurityAction.RequestOptional, Unrestricted=false)]
//...and explicitly add those we need
// see Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding.StrictLengthEnabledProperty
//[assembly: EnvironmentPermission(SecurityAction.RequestOptional, Read="Org.BouncyCastle.Pkcs1.Strict")]
internal class AssemblyInfo
{
private static string version = null;
public static string Version
{
get
{
if (version == null)
{
#if PORTABLE
#if NEW_REFLECTION
var a = typeof(AssemblyInfo).GetTypeInfo().Assembly;
var c = a.GetCustomAttributes(typeof(AssemblyVersionAttribute));
#else
var a = typeof(AssemblyInfo).Assembly;
var c = a.GetCustomAttributes(typeof(AssemblyVersionAttribute), false);
#endif
var v = (AssemblyVersionAttribute)c.FirstOrDefault();
if (v != null)
{
version = v.Version;
}
#else
version = typeof(AssemblyInfo).Assembly.GetName().Version.ToString();
#endif
// if we're still here, then don't try again
if (version == null)
{
version = string.Empty;
}
}
return version;
}
}
}
#if NET40
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
|