Fixed issue, where the validator enabled state couldn't be loaded correctly, if in another assembly
This commit is contained in:
parent
ddb4fc25ea
commit
58acb2979d
5 changed files with 135 additions and 11 deletions
|
|
@ -101,7 +101,7 @@ namespace Module.ProjectValidator.Editor
|
|||
if (!settings.validators[i].enabled)
|
||||
continue;
|
||||
|
||||
var type = Type.GetType(settings.validators[i].type);
|
||||
var type = Type.GetType(settings.validators[i].assemblyQualifiedName);
|
||||
|
||||
if (type != null)
|
||||
enabled.Add(type);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue