完全清除Resource依赖, 目前可以直接使用源码

This commit is contained in:
2025-10-08 12:00:42 +08:00
parent 0d4d4b75bb
commit a09b3c1eb1
31 changed files with 49 additions and 2926 deletions

View File

@@ -4,7 +4,6 @@ using System.Reflection;
using Flee.ExpressionElements;
using Flee.ExpressionElements.Base;
using Flee.PublicTypes;
using Flee.Resources;
using IDynamicExpression = Flee.PublicTypes.IDynamicExpression;
using System;
@@ -161,7 +160,7 @@ namespace Flee.InternalTypes
Utility.AssertNotNull(owner, "owner");
if (_myOptions.OwnerType.IsAssignableFrom(owner.GetType()) == false)
{
string msg = Utility.GetGeneralErrorMessage(GeneralErrorResourceKeys.NewOwnerTypeNotAssignableToCurrentOwner);
string msg = Utility.GetGeneralErrorMessage("NewOwnerTypeNotAssignableToCurrentOwner");
throw new ArgumentException(msg);
}
}