添加了编译好的软件

This commit is contained in:
fengjiayi
2024-10-12 09:03:06 +08:00
parent 9bc5e8a698
commit 8180ffaf3c
11 changed files with 86 additions and 10 deletions

View File

@@ -139,15 +139,11 @@ namespace Serein.NodeFlow
#region
// 判断使用哪一种流程上下文
var isNetFramework = false;
if (isNetFramework)
{
Context = new Serein.Library.Framework.NodeFlow.DynamicContext(env);
}
else
{
Context = new Serein.Library.Core.NodeFlow.DynamicContext(env); // 从起始节点启动流程时创建上下文
}
#if NET6_0_OR_GREATER
Context = new Serein.Library.Core.NodeFlow.DynamicContext(env); // 从起始节点启动流程时创建上下文
#else
Context = new Serein.Library.Framework.NodeFlow.DynamicContext(env);
#endif
#endregion
#region Ioc容器