* „Linie 1: Added an import for the Logger type. The error BC30002 indicates that the type 'Logger' is not defined. Since the existing import is for the namespace 'DigitalData.Modules.Logging', it's possible that 'Logger' is a type within that namespace or a sub-namespace. Adding an explicit import for 'DigitalData.Modules.Logging.Logger' may resolve the missing type error.“ in Datei „Encryption\Compression.vb“

This commit is contained in:
Developer01
2025-12-29 13:36:31 +01:00
parent 789a87dac4
commit 2943124b53

View File

@@ -1,6 +1,7 @@
Imports System.IO
Imports System.IO.Compression
Imports DigitalData.Modules.Logging
Imports DigitalData.Modules.Logging.Logger
Public Class Compression
Private ReadOnly _logger As Logger