From 1d5eaeb7aadd55a7dd0d89196baf4c65191597e7 Mon Sep 17 00:00:00 2001 From: Developer01 Date: Mon, 29 Dec 2025 13:47:22 +0100 Subject: [PATCH] =?UTF-8?q?*=20=E2=80=9ELinie=2011:=20FilesystemEx=20type?= =?UTF-8?q?=20is=20not=20defined=20anywhere=20in=20the=20project=20or=20it?= =?UTF-8?q?s=20dependencies.=20The=20instantiation=20is=20commented=20out?= =?UTF-8?q?=20to=20resolve=20the=20BC30002=20error.=20Further=20action=20m?= =?UTF-8?q?ay=20be=20needed=20if=20this=20functionality=20is=20required,?= =?UTF-8?q?=20such=20as=20implementing=20or=20referencing=20the=20missing?= =?UTF-8?q?=20type.=20Linie=205:=20FilesystemEx=20type=20is=20not=20define?= =?UTF-8?q?d=20anywhere=20in=20the=20project=20or=20its=20dependencies.=20?= =?UTF-8?q?The=20field=20is=20commented=20out=20to=20resolve=20the=20BC300?= =?UTF-8?q?02=20error.=20Further=20action=20may=20be=20needed=20if=20this?= =?UTF-8?q?=20functionality=20is=20required,=20such=20as=20implementing=20?= =?UTF-8?q?or=20referencing=20the=20missing=20type.=E2=80=9C=20in=20Datei?= =?UTF-8?q?=20=E2=80=9EConfig\ConfigUtils.vb=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Config/ConfigUtils.vb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Config/ConfigUtils.vb b/Config/ConfigUtils.vb index 486a60d2..79688d11 100644 --- a/Config/ConfigUtils.vb +++ b/Config/ConfigUtils.vb @@ -2,13 +2,13 @@ Public Class ConfigUtils Private ReadOnly _Logger As Logger - Private ReadOnly _File As FilesystemEx + ' Private ReadOnly _File As FilesystemEx Private Const MIGRATE_DIRECTORY As String = "Migrate" Public Sub New(LogConfig As LogConfig) _Logger = LogConfig.GetLogger() - _File = New FilesystemEx(LogConfig) + ' _File = New FilesystemEx(LogConfig) End Sub '''