HOME 5 月之前
父節點
當前提交
c616d46429
共有 2 個文件被更改,包括 1 次插入4 次删除
  1. 1 1
      PCC.DevClient/DevClientApp.cs
  2. 0 3
      PCC.Shared/Common/Init/GenericPurposeApplication.cs

+ 1 - 1
PCC.DevClient/DevClientApp.cs

@@ -65,6 +65,6 @@ internal class DevClientApp(DevClientPccConfigManager configManager, TrustedPeer
     public void Stop()
     {
         logger.LogInformation("stop");
-        eventBus.Publish(new TrustedPeerManager.TPM_EVT_CMD_SHUTDOWN());
+        eventBus.Publish<TrustedPeerManager.TPM_EVT_CMD_SHUTDOWN>();
     }
 }

+ 0 - 3
PCC.Shared/Common/Init/GenericPurposeApplication.cs

@@ -1,5 +1,4 @@
 using System.Text;
-using Microsoft.Extensions.Logging.Console;
 
 namespace PCC.Common.Init;
 
@@ -9,6 +8,4 @@ public static class GenericPurposeApplication
     {
         Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
     }
-
-
 }