parent
429845bf9e
commit
b9ea9b21f3
|
@ -21,7 +21,7 @@ namespace HybridCLR.Editor.Meta
|
||||||
private bool IsPluginDll(string dllPath)
|
private bool IsPluginDll(string dllPath)
|
||||||
{
|
{
|
||||||
var fileOrDirs = new HashSet<string>(dllPath.Split('\\', '/'));
|
var fileOrDirs = new HashSet<string>(dllPath.Split('\\', '/'));
|
||||||
return !fileOrDirs.Intersect(s_ignoreDirs).Any();
|
return !fileOrDirs.Any(dir => dir.EndsWith("~")) && !fileOrDirs.Intersect(s_ignoreDirs).Any();
|
||||||
}
|
}
|
||||||
|
|
||||||
public string ResolveAssembly(string assemblyName, bool throwExIfNotFind)
|
public string ResolveAssembly(string assemblyName, bool throwExIfNotFind)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "com.focus-creative-games.hybridclr_unity",
|
"name": "com.focus-creative-games.hybridclr_unity",
|
||||||
"version": "0.10.4",
|
"version": "0.10.5",
|
||||||
"displayName": "HybridCLR",
|
"displayName": "HybridCLR",
|
||||||
"description": "Unity package for HybridCLR. It includes editor and runtime scripts and assets for HybridCLR",
|
"description": "Unity package for HybridCLR. It includes editor and runtime scripts and assets for HybridCLR",
|
||||||
"category": "Runtime",
|
"category": "Runtime",
|
||||||
|
|
Loading…
Reference in New Issue