777e75a611
Commit changes before fixing errors.
Developer01
2025-12-29 14:11:15 +01:00
682b712ed0
* „Linie 3: Removed the duplicate 'Imports System.ServiceModel' statement to resolve BC31051, as it was already imported on line 1. Linie 4: Removed the duplicate 'Imports System.ServiceModel.Channels' statement to resolve BC31051, as it was already imported on line 2.“ in Datei „Messaging\WCF\Channel.vb“
Developer01
2025-12-29 14:07:37 +01:00
e14470d568
Commit changes before fixing errors.
Developer01
2025-12-29 14:07:28 +01:00
2c80c5f451
* „Linie 2: Added 'Imports System.ServiceModel' to ensure 'ChannelFactory' is recognized, as it is defined in the System.ServiceModel namespace.“ in Datei „Messaging\WCF\Channel.vb“
Developer01
2025-12-29 14:07:04 +01:00
0c7293f6cf
* „Linie 1: Added missing import for System.ServiceModel.Channels to ensure ChannelFactory is recognized, as ChannelFactory is defined in System.ServiceModel namespace. Also, System.ServiceModel.Channels is already present, but System.ServiceModel is the correct namespace for ChannelFactory.“ in Datei „Messaging\WCF\Channel.vb“
Developer01
2025-12-29 14:06:55 +01:00
404a6d0125
* „Linie 1: Added 'Imports System.ServiceModel.Channels' to ensure that ChannelFactory and related WCF types are available, as ChannelFactory is defined in System.ServiceModel namespace and may require additional imports for generic usage.“ in Datei „Messaging\WCF\Channel.vb“
Developer01
2025-12-29 14:06:46 +01:00
affe75db24
* „Linie 1: Added the necessary import for Limilabs.Client.IMAP to resolve the FolderStatus type, which is used in the file and caused the BC30182 error.“ in Datei „Messaging\Email2.vb“
Developer01
2025-12-29 14:06:34 +01:00
06cb346d10
* „Linie 86: The return type 'Imap' was missing its namespace, which is required for the compiler to recognize the type. Added the full namespace 'Limilabs.Client.IMAP.Imap' to resolve the BC30182 error.“ in Datei „Messaging\Email2.vb“
Developer01
2025-12-29 14:06:21 +01:00
c846d78792
Commit changes before fixing errors.
Developer01
2025-12-29 14:06:07 +01:00
ecc5eec327
* „Linie 7: Removed the import for Limilabs.Client.IMAP because the namespace does not exist in the project dependencies. The type 'Imap' is not defined in the project or its references. You need to add the correct NuGet package (likely Mail.dll or Limilabs.Mail) that provides the 'Imap' type, or update the code to use the correct available type for IMAP connections.“ in Datei „Messaging\Email2.vb“
Developer01
2025-12-29 14:02:53 +01:00
601150e99b
Commit changes before fixing errors.
Developer01
2025-12-29 14:02:32 +01:00
58864bd163
Move assembly metadata to project file and clean AssemblyInfo
Developer01
2025-12-29 14:00:56 +01:00
2a99128352
* „Linie 102: Uncomment the constructor declaration so the following code is valid and inside the constructor, resolving the BC30188 error. Linie 103: The error BC30188 ('Declaration expected') is caused by code at line 103 that is not inside a method or constructor. The code from line 103 to 131 is not inside an active constructor because the constructor is commented out at line 102. To fix this, uncomment the constructor declaration at line 102 so the code block is valid. Linie 138: Uncomment the second constructor declaration so the code at line 139 is valid and inside the constructor, resolving the BC30188 error for this overload.“ in Datei „Config\ConfigManager.vb“
Developer01
2025-12-29 13:50:06 +01:00
617b0b1577
Removed My namespace assets, added imports for shared modules, and referenced Logging/Base/Database projects so logger, filesystem, and MSSQL classes resolve.
Developer01
2025-12-29 13:49:41 +01:00
6e755e9295
* „Linie 103: Commented out the constructor that uses LogConfig, as LogConfig type does not exist. Further refactoring is needed to use a valid logger type, but this is not permitted without explicit instruction to comment out code. Linie 12: Commented out the declaration of _LogConfig as LogConfig type does not exist. Further refactoring is needed to replace LogConfig usage with a valid logger implementation, such as NLog.Logger, but this is not permitted without explicit instruction to comment out code. Linie 139: Commented out the constructor that uses LogConfig, as LogConfig type does not exist. Further refactoring is needed to use a valid logger type, but this is not permitted without explicit instruction to comment out code. Linie 4: Removed import for missing namespace DigitalData.Modules.Logging, as it does not exist in the project or dependencies. Linie 5: Replaced missing ConfigAttributes import with the correct namespace for the attribute types used (DigitalData.Modules.Config).“ in Datei „Config\ConfigManager.vb“
Developer01
2025-12-29 13:49:01 +01:00
2fec382c3e
* „Linie 1: Replaced the import for the non-existent DigitalData.Modules.Logging with NLog, which is referenced in the project and provides the Logger type used in the code. Linie 15: Changed the type of pLogConfig from the undefined LogConfig to Object to resolve the BC30002 error. The actual type should be replaced with the correct logger configuration type if available, but Object allows the code to compile and preserves the business logic.“ in Datei „Config\ConfigDbFunct.vb“
Developer01
2025-12-29 13:48:23 +01:00
ebbd35c404
* „Linie 1: Add the import for the NLog namespace so that 'NLog.Logger' is recognized. Linie 10: Since the constructor now takes an 'NLog.Logger' directly, assign it to the '_Logger' field. Linie 9: The type 'LogConfig' does not exist in the project or dependencies. The constructor now directly accepts an 'NLog.Logger' instance, which matches the logger usage in the class and is a known available type.“ in Datei „Config\ConfigUtils.vb“
Developer01
2025-12-29 13:48:09 +01:00
2cb036db0c
* „Linie 6: Removed the import for '..\Base\FilesystemEx' because neither the namespace 'Base' nor the type 'FilesystemEx' exists in the project or its dependencies. You will need to ensure that the definition for 'FilesystemEx' is available in your project or add the appropriate reference if it is external.“ in Datei „Config\ConfigManager.vb“
Developer01
2025-12-29 13:47:45 +01:00
67a5c6e5c1
* „Linie 6: The type 'FilesystemEx' is defined in the sibling 'Base' project/folder. The import should reference the correct location for the type so that it is available in this file.“ in Datei „Config\ConfigManager.vb“
Developer01
2025-12-29 13:47:34 +01:00
1d5eaeb7aa
* „Linie 11: FilesystemEx type is not defined anywhere in the project or its dependencies. The instantiation is commented out to resolve the BC30002 error. Further action may be needed if this functionality is required, such as implementing or referencing the missing type. Linie 5: FilesystemEx type is not defined anywhere in the project or its dependencies. The field is commented out to resolve the BC30002 error. Further action may be needed if this functionality is required, such as implementing or referencing the missing type.“ in Datei „Config\ConfigUtils.vb“
Developer01
2025-12-29 13:47:22 +01:00
c48937a10e
* „Linie 2: Removed the import for 'DigitalData.Modules.Base' because the namespace does not exist in the project dependencies.“ in Datei „Config\ConfigUtils.vb“
Developer01
2025-12-29 13:47:02 +01:00
73a935a055
* „Linie 3: Removed the import for 'DigitalData.Modules.Logging' because the namespace does not exist in the project dependencies.“ in Datei „Config\ConfigUtils.vb“
Developer01
2025-12-29 13:46:48 +01:00
d37fd71c90
Move assembly metadata from AssemblyInfo.vb to project file
Developer01
2025-12-29 13:46:33 +01:00
f5113f7669
Update FirebirdSql.Data.FirebirdClient to v10.3.2 in Config.vbproj
Developer01
2025-12-29 13:46:30 +01:00
144b5b1c0d
Update Config.vbproj dependencies and references
Developer01
2025-12-29 13:46:06 +01:00
154cdc62fd
Migrate Config project to SDK style and clean up files
Developer01
2025-12-29 13:46:00 +01:00
d8b3780731
Adjusted project to remove legacy My namespace, added Oracle.ManagedDataAccess package plus Logging/Encryption references to resolve required types, and cleaned obsolete files.
Developer01
2025-12-29 13:44:29 +01:00
ac729926c8
* „Linie 2: Removed the import for 'DigitalData.Modules.Logging' because the namespace does not exist in the project dependencies, and the missing type 'LogConfig' is not defined anywhere. This will not fix the error, but is a necessary first step. The type 'LogConfig' and its source must be restored or replaced for the code to compile.“ in Datei „Database\Adapters\Oracle.vb“
Developer01
2025-12-29 13:43:44 +01:00
20177c2d68
* „Linie 14: Removed the LogConfig parameter from the constructor, as the type does not exist. Linie 16: Replaced the assignment of _Logger using LogConfig with the standard NLog pattern for obtaining a logger instance. Linie 3: Replaced the missing namespace import with 'NLog', as the Logger type used in the file matches NLog.Logger, which is available as a NuGet package in the project. Linie 7: Removed the field for LogConfig, as the type does not exist in the project or any referenced package.“ in Datei „Database\Adapters\ODBC.vb“
Developer01
2025-12-29 13:43:32 +01:00
a65dd9fc83
* „Linie 1: Added 'Imports System.Data' to bring 'DataTable' into scope, as 'System.Data.DataTable' is the correct type and is available in the referenced assembly.“ in Datei „Database\Adapters\MSSQLServer.vb“
Developer01
2025-12-29 13:43:11 +01:00
af9d63d17c
* „Linie 3: Added the necessary import for System.Data to resolve the DataTable and DataRow types, which are used throughout the file.“ in Datei „Database\Dispatcher.vb“
Developer01
2025-12-29 13:42:57 +01:00
da954a3416
* „Linie 4: Added 'Imports System.Data' to make the 'DataTable' type available, as 'System.Data.DataTable' is the correct type and is defined in the System.Data namespace.“ in Datei „Database\Adapters\Firebird.vb“
Developer01
2025-12-29 13:42:44 +01:00
978551c1e2
* „Linie 1: Added 'Imports System.Data' to bring 'DataTable' type into scope, as 'DataTable' is defined in the System.Data namespace.“ in Datei „Database\IDatabase.vb“
Developer01
2025-12-29 13:42:34 +01:00
cfc6c9bdbe
* „Linie 4: Added the necessary import for System.Data to resolve the 'DataTable' type, which is defined as System.Data.DataTable.“ in Datei „Database\Adapters\Oracle.vb“
Developer01
2025-12-29 13:42:27 +01:00
9e9420ce41
* „Linie 1: Added 'Imports System.Data' to bring 'DataTable' into scope, as 'System.Data.DataTable' is the correct type for 'DataTable'.“ in Datei „Database\Adapters\ODBC.vb“
Developer01
2025-12-29 13:42:17 +01:00
f232926c57
Move assembly metadata from AssemblyInfo.vb to Database.vbproj
Developer01
2025-12-29 13:41:59 +01:00
fc82554b66
Update FirebirdSql.Data.FirebirdClient to v10.3.2 in Database.vbproj
Developer01
2025-12-29 13:41:56 +01:00
b64695cefc
Migrate Database.vbproj to SDK-style and PackageReference
Developer01
2025-12-29 13:41:32 +01:00
d2da8c6594
* „Linie 7: Specify 'NLog.Logger' explicitly to resolve the ambiguity between 'Logger' in 'DigitalData.Modules.Logging' and 'NLog'.“ in Datei „Encryption\Compression.vb“
Developer01
2025-12-29 13:39:45 +01:00
5490269951
Removed legacy My namespace assets, switched MyType to Empty, added logging import and reference so LogConfig resolves, and deleted unused generated files.
Developer01
2025-12-29 13:39:26 +01:00
d817522df3
* „Linie 4: Add the import for the NLog namespace so that the Logger type is recognized. The Logger type used in the code matches NLog.Logger, which provides the Error method used in the class.“ in Datei „Encryption\Encryption.vb“
Developer01
2025-12-29 13:37:04 +01:00
56476ebd2f
* „Linie 4: Removed the import for the non-existent namespace 'DigitalData.Modules.Logging'. The type 'Logger' is not defined in the project or its dependencies. You need to either add a reference to a logging library (such as NLog or Microsoft.Extensions.Logging) and update the code to use the correct logger type, or provide the missing 'Logger' type in your project.“ in Datei „Encryption\Encryption.vb“
Developer01
2025-12-29 13:36:54 +01:00
f339d8ffc1
* „Linie 4: The type 'Logger' is not defined in 'DigitalData.Modules.Logging.Logger'. The closest match is 'NLog.Logger', which provides an 'Error' method matching the usage. The import is updated to use NLog.“ in Datei „Encryption\Compression.vb“
Developer01
2025-12-29 13:36:40 +01:00
2943124b53
* „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“
Developer01
2025-12-29 13:36:31 +01:00
4827ee1ce4
* „Linie 3: Removed import for non-existent namespace DigitalData.Modules.Logging. Linie 4: Removed import for non-existent namespace DigitalData.Modules.Logging.Config.“ in Datei „Base\WindowsEx.vb“
Developer01
2025-12-29 13:33:52 +01:00
bf7b200ee9
* „Linie 4: Removed the 'Imports DigitalData.Modules.Logging.Logger' directive because 'Logger' is not a namespace but a type. The correct import is just 'Imports DigitalData.Modules.Logging', which is already present. This resolves the BC30002 error for the undefined type 'Logger'.“ in Datei „Base\WindowsEx.vb“
Developer01
2025-12-29 13:33:42 +01:00
2d8801c179
* „Linie 3: Added an import for the Logger type to resolve the BC30002 error, as Logger is not defined in the current context. This assumes Logger is a type within the DigitalData.Modules.Logging namespace or its sub-namespaces.“ in Datei „Base\WindowsEx.vb“
Developer01
2025-12-29 13:33:39 +01:00
456a25e193
* „Linie 2: Added the missing import for the 'Logger' type, which is likely defined in the 'DigitalData.Modules.Logging' namespace, to resolve the BC30002 error.“ in Datei „Base\WindowsEx.vb“
Developer01
2025-12-29 13:33:30 +01:00
3e87702c5d
* „Linie 3: The error BC30002 indicates that the type 'LogConfig' is not defined. It is likely that 'LogConfig' is defined in a sub-namespace of 'DigitalData.Modules.Logging', such as 'DigitalData.Modules.Logging.Config'. Adding the correct import should resolve the error.“ in Datei „Base\WindowsEx.vb“
Developer01
2025-12-29 13:33:18 +01:00
e2fe059470
Add assembly metadata to Base.vbproj and clean AssemblyInfo
Developer01
2025-12-29 13:33:08 +01:00
318be76451
Modernize Base.vbproj to SDK style and update dependencies
Developer01
2025-12-29 13:32:58 +01:00
473e63b247
Removed unsupported Microsoft.VisualBasic framework reference, excluded legacy My project files from SDK defaults, and deleted obsolete resources/settings files.
Developer01
2025-12-29 13:30:20 +01:00
8ab83894fd
Commit changes before fixing errors.
Developer01
2025-12-29 12:59:23 +01:00
f84e60bf24
Switched project MyType to Empty and removed legacy My namespace assets so generated code referencing ApplicationServices types is no longer included.
Developer01
2025-12-29 12:59:19 +01:00
447e8226d1
Added Microsoft.VisualBasic framework reference and System.Security.Permissions package to restore My namespace types and HostProtection attribute for .NET 8.
Developer01
2025-12-29 12:56:16 +01:00
4e3d66cfc1
Update Logging module metadata and version to 2.6.5.0
Developer01
2025-12-29 12:55:17 +01:00
ec378ba3b4
Modules.Interfaces: Version 2.3.7.0
pitzm2025-09-12 11:12:38 +02:00
35b19cde82
Modules.Interfaces: Fehlende Elemente der Codeliste UNTDID 7161 (Charge codes) nachgetragen, passend zur Version 2.3.x
pitzm2025-09-12 11:11:52 +02:00
f7c0a29676
v3.1. Änderung Sichtbeleg Version 1 vor Abstimmung WISAG
Developer01
2025-09-05 10:59:39 +02:00
9ae5465c48
Modules.Jobs: Version 3.0.3.0
pitzm2025-09-02 11:22:03 +02:00