Commit Graph

  • 4e527c9cbb Update Windream.vbproj: replace interop refs with CoreWCF Developer01 2025-12-29 14:14:38 +01:00
  • 47dc1366f4 Migrate Windream.vbproj to SDK-style and .NET 8 Developer01 2025-12-29 14:14:31 +01:00
  • 1d9a076e87 Commit changes before fixing global.json file(s). Developer01 2025-12-29 14:14:21 +01:00
  • 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
  • 73d337d1de Update Messaging.vbproj package references and dependencies Developer01 2025-12-29 14:00:49 +01:00
  • cc59555f5f Modernize Messaging.vbproj to SDK style and update deps Developer01 2025-12-29 14:00:41 +01:00
  • bcb60d2456 Converted project away from My namespace (MyType Empty), removed generated My files, and added Logging project reference so logger types resolve. Developer01 2025-12-29 13:56:33 +01:00
  • 7acd642859 Update assembly metadata in Filesystem project files Developer01 2025-12-29 13:54:53 +01:00
  • 8f058647e0 Update Filesystem.vbproj dependencies for CoreWCF support Developer01 2025-12-29 13:54:48 +01:00
  • 05ea9cb25b Migrate Filesystem.vbproj to SDK-style and .NET 8.0 Developer01 2025-12-29 13:54:42 +01:00
  • 6940b01038 Endgültige Änderungen für Schritt „Upgrade Config\Config.vbproj“ speichern Developer01 2025-12-29 13:53:12 +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
  • 7921fceb63 Update Database.vbproj package references and dependencies Developer01 2025-12-29 13:41:38 +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
  • 789a87dac4 Add assembly metadata to Encryption.vbproj, clean AssemblyInfo Developer01 2025-12-29 13:36:15 +01:00
  • 75930d5a03 Update Encryption.vbproj: switch to CoreWCF and new packages Developer01 2025-12-29 13:36:12 +01:00
  • 37a439d337 Modernize Encryption.vbproj to SDK style and .NET 8 Developer01 2025-12-29 13:36:07 +01:00
  • df84046d78 Endgültige Änderungen für Schritt „Upgrade Base\Base.vbproj“ speichern Developer01 2025-12-29 13:34:41 +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
  • a87937e1ad Update Base.vbproj: switch to .NET Core-compatible packages Developer01 2025-12-29 13:33:04 +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
  • 86cdbd06df Update Logging.vbproj: add CoreWCF and config packages Developer01 2025-12-29 12:55:08 +01:00
  • 3b5137cb46 Modernize Logging.vbproj to SDK style and update NLog ref Developer01 2025-12-29 12:54:57 +01:00
  • 8107d9fe81 Commit upgrade plan Developer01 2025-12-29 12:52:53 +01:00
  • 32015e5439 Modules.Interface: ZUGFeRD 2.4 - Schema-Klasse und Aufruf ergänzt pitzm 2025-12-12 12:34:24 +01:00
  • 06e796f54f ConfigDBFunct Logging Developer01 2025-12-08 10:43:22 +01:00
  • bbe372377a ZFInterface Developer01 2025-12-05 14:04:32 +01:00
  • 7b91aac5e9 MS Rekompilierung Developer01 2025-11-28 10:42:33 +01:00
  • ceb688fc3f Jobs Sichtbeleg Anpassung Developer01 2025-11-19 16:41:36 +01:00
  • aa5742a529 MS Änderungen lokal PC Mirko Developer01 2025-11-18 16:15:22 +01:00
  • 79267e6bd9 GD Picture und Verweise Developer01 2025-11-17 12:50:52 +01:00
  • cf63fd8c39 Update GDPIcture Developer01 2025-11-17 12:42:17 +01:00
  • ec3a677ca8 MS Jobs Sichtbeleg Developer01 2025-11-11 17:42:08 +01:00
  • 5b302d8673 Push mit allen Modules Modules-Update-.Net-8 Developer01 2025-10-02 14:35:25 +02:00
  • ca962fba9b EDMI API Developer01 2025-10-02 12:32:16 +02:00
  • 89b05d5f78 Update auf .NET 8 Developer01 2025-10-01 15:17:45 +02:00
  • 2332f64748 Bin und Debug Developer01 2025-09-19 13:06:44 +02:00
  • 3901fdc3a5 Stage Commit Developer01 2025-09-19 13:05:04 +02:00
  • c16401c7d6 Include Database/bin folder Developer01 2025-09-19 12:59:32 +02:00
  • e13434ccff GDPicture Update Developer01 2025-09-18 16:37:05 +02:00
  • e9427b35be ViewDocument before GDPicture Update Developer01 2025-09-17 14:05:04 +02:00
  • 51798a28f5 ViewDocument xrechnung Developer01 2025-09-17 10:38:54 +02:00
  • 48406884ca Merge branch 'master' of http://git.dd:3000/AppStd/Modules Developer01 2025-09-15 08:46:37 +02:00
  • 204aaaeb4e Korrektur pitzm 2025-09-12 12:55:41 +02:00
  • ec378ba3b4 Modules.Interfaces: Version 2.3.7.0 pitzm 2025-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 pitzm 2025-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 pitzm 2025-09-02 11:22:03 +02:00
  • 82139fc30d Modules.Jobs: 4000 Zeichen-Grenze pitzm 2025-09-02 11:20:14 +02:00