HOME il y a 5 mois
Parent
commit
c616d46429

+ 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);
     }
-
-
 }