tool manager - don't go looking for tools outside of the EmuHawk assembly, I suspect this will actually fix the appveyor build issue, indirectly.
This commit is contained in:
parent
5f1c76b285
commit
9141b0ed19
|
@ -740,7 +740,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
}
|
}
|
||||||
|
|
||||||
private static readonly Lazy<List<string>> lazyAsmTypes = new Lazy<List<string>>(() =>
|
private static readonly Lazy<List<string>> lazyAsmTypes = new Lazy<List<string>>(() =>
|
||||||
Assembly.ReflectionOnlyLoadFrom(Assembly.GetExecutingAssembly().Location)
|
Assembly.GetAssembly(typeof(ToolManager)) // Confining the search to only EmuHawk, for now at least, we may want to broaden for ApiHawk one day
|
||||||
.GetTypes()
|
.GetTypes()
|
||||||
.Select(t => t.AssemblyQualifiedName)
|
.Select(t => t.AssemblyQualifiedName)
|
||||||
.ToList()
|
.ToList()
|
||||||
|
|
Loading…
Reference in New Issue