准备修改运行环境中类库的依赖结构

This commit is contained in:
fengjiayi
2024-11-03 18:28:16 +08:00
parent d646c4e820
commit a76091092d
15 changed files with 264 additions and 162 deletions

View File

@@ -129,7 +129,7 @@ namespace Serein.Library
&& index < ParameterDetailss.Length) // 防止下标越界
{
ParameterDetailss[index] = null; // 释放对象引用
var tmp = ArrayHelper.RemoteToArray(ParameterDetailss, index); // 新增;
var tmp = ArrayHelper.RemoteToArray<ParameterDetails>(ParameterDetailss, index); // 新增;
UpdateParamIndex(ref tmp);
ParameterDetailss = tmp; // 新增
return true;

View File

@@ -12,9 +12,9 @@ namespace Serein.Library
public class MethodDetailsInfo
{
/// <summary>
/// 属于哪个DLL文件
/// 属于哪个程序集
/// </summary>
public string LibraryName { get; set; }
public string AssemblyName { get; set; }
/// <summary>
/// 方法名称

View File

@@ -33,9 +33,9 @@ namespace Serein.Library
public class LibraryMds
{
/// <summary>
/// 程序集FullName
/// 程序集名称
/// </summary>
public string LibraryName { get; set; }
public string AssemblyName { get; set; }
/// <summary>
/// 相关的方法详情
/// </summary>