blob: 665bd7ab1acaace7124f859dfa68f6c92424bcbb (
plain)
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
81
82
83
84
85
86
87
88
|
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.Helpers;
namespace Tango.Scripting.Basic
{
public class ReferenceAssembly
{
private static Dictionary<String, Assembly> _assembliesCache;
static ReferenceAssembly()
{
_assembliesCache = new Dictionary<string, Assembly>();
}
public String File { get; set; }
public Type HintType { get; set; }
[JsonIgnore]
public String Name
{
get { return Path.GetFileNameWithoutExtension(File); }
}
public static ReferenceAssembly FromType(Type type)
{
ReferenceAssembly reference = new ReferenceAssembly();
reference.HintType = type;
var assembly = type.Assembly;
reference.File = assembly.Location;
return reference;
}
public static ReferenceAssembly FromFile(String file)
{
return new ReferenceAssembly() { File = file };
}
public Assembly Load()
{
Assembly loaded = null;
if (!_assembliesCache.TryGetValue(Name, out loaded))
{
try
{
if (HintType != null)
{
loaded = HintType.Assembly;
}
else
{
loaded = Assembly.LoadFrom(File);
}
_assembliesCache.Add(Name, loaded);
}
catch
{
try
{
String dotNetPath = AssemblyHelper.GetAssemblyTargetFrameworkFolder(Assembly.GetExecutingAssembly());
String dotNetAsm = Path.Combine(dotNetPath, Name + ".dll");
loaded = Assembly.LoadFrom(dotNetAsm);
_assembliesCache.Add(Name, loaded);
}
catch (Exception ex)
{
throw new FileNotFoundException($"Could not load assembly '{Name}'. File not found.", ex);
}
}
}
return loaded;
}
public override string ToString()
{
return Name;
}
}
}
|