diff --git a/Extend.FlowRemoteManagement/Model/ConnectionInfoData.cs b/Extend.FlowRemoteManagement/Model/ConnectionInfoData.cs
deleted file mode 100644
index c8f4fb7..0000000
--- a/Extend.FlowRemoteManagement/Model/ConnectionInfoData.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Serein.FlowRemoteManagement.Model
-{
- public class ConnectionInfoData
- {
- public bool Op { get; set; }
- public string? FromNodeGuid { get; set; }
- public string? ToNodeGuid { get; set; }
- // None Upstream IsSucceed IsFail IsError
- public string? Type { get; set; }
- }
-}
diff --git a/Extend.FlowRemoteManagement/Serein.Extend.RemoteControl.csproj b/Extend.FlowRemoteManagement/Serein.Extend.RemoteControl.csproj
deleted file mode 100644
index 5abb2a8..0000000
--- a/Extend.FlowRemoteManagement/Serein.Extend.RemoteControl.csproj
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
- 1.0.0
- net8.0
- enable
- enable
- D:\Project\C#\DynamicControl\SereinFlow\.Output
-
-
-
-
-
-
-
-
-
-
diff --git a/Extend.FlowRemoteManagement/SereinFlowRemoteControl.cs b/Extend.FlowRemoteManagement/SereinFlowRemoteControl.cs
deleted file mode 100644
index 7a7722a..0000000
--- a/Extend.FlowRemoteManagement/SereinFlowRemoteControl.cs
+++ /dev/null
@@ -1,167 +0,0 @@
-
-using Serein.Library;
-using Serein.Library.Api;
-using Serein.Library.Network.WebSocketCommunication;
-using System.Security.Cryptography.X509Certificates;
-using Serein.NodeFlow;
-using Serein.Library.Core.NodeFlow;
-using Serein.Library.Utils;
-using Serein.FlowRemoteManagement.Model;
-using System.Reflection;
-using Serein.Library.FlowNode;
-
-namespace SereinFlowRemoteManagement
-{
-
-
- ///
- /// SereinFlow 远程控制模块
- ///
- [DynamicFlow]
- [AutoRegister]
- [AutoSocketModule(ThemeKey ="theme",DataKey ="data")]
- public class SereinFlowRemoteControl : ISocketHandleModule
- {
- public int ServerPort { get; set; } = 7525;
-
- #region 初始化服务端
- public Guid HandleGuid { get; } = new Guid();
-
- private readonly IFlowEnvironment environment;
- public SereinFlowRemoteControl(IFlowEnvironment environment)
- {
- this.environment = environment;
- }
-
- [NodeAction(NodeType.Init)]
- public void Init(IDynamicContext context)
- {
- environment.IOC.Register();
- }
-
- [NodeAction(NodeType.Loading)]
- public async Task Loading(IDynamicContext context)
- {
- environment.IOC.Run(async (socketServer) =>
- {
- socketServer.MsgHandleHelper.AddModule(this,
- (ex, send) =>
- {
- send(new
- {
- code = 400,
- ex = ex.Message
- });
- });
- await Console.Out.WriteLineAsync("启动远程管理模块");
- await socketServer.StartAsync($"http://*:{ServerPort}/");
- });
- SereinProjectData projectData = await environment.GetProjectInfoAsync();
- }
- #endregion
-
- #region 流程运行接口
-
- ///
- /// 连接到运行环境,获取当前的节点信息
- ///
- ///
- ///
- [AutoSocketHandle]
- public async Task