mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-04-12 02:46:35 +08:00
准备修改运行环境中类库的依赖结构
This commit is contained in:
@@ -87,16 +87,17 @@ namespace Serein.NodeFlow.Env
|
||||
/// <summary>
|
||||
/// 程序集封装依赖
|
||||
/// </summary>
|
||||
/// <param name="library"></param>
|
||||
/// <param name="libraryInfo"></param>
|
||||
/// <returns></returns>
|
||||
public static Library.Library ToLibrary(this Library.NodeLibrary library)
|
||||
public static Library.Library ToLibrary(this Library.NodeLibraryInfo libraryInfo)
|
||||
{
|
||||
var tmp = library.Assembly.ManifestModule.Name;
|
||||
//var tmp = library.Assembly.ManifestModule.Name;
|
||||
return new Library.Library
|
||||
{
|
||||
AssemblyName = library.Assembly.GetName().Name,
|
||||
FileName = library.FileName,
|
||||
FilePath = library.FilePath,
|
||||
AssemblyName = libraryInfo.AssemblyName,
|
||||
//AssemblyName = library.Assembly.GetName().Name,
|
||||
FileName = libraryInfo.FileName,
|
||||
FilePath = libraryInfo.FilePath,
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user