Enhance logging in FdsSqlOptions and related classes

- Updated FdsSqlOptions to accept an optional ILogger parameter for improved error logging.
- Modified FdsMfr and FdsMfrClient classes to pass the logger instance to FdsSqlOptions.
- Added detailed error logging in various methods to capture SQL execution issues and file handling errors.
- Improved documentation for FdsSqlOptions to clarify logging behavior.
- Updated Archive class to log compression errors, enhancing traceability of failures.
- Adjusted project configuration to suppress specific warnings related to transitive dependencies.
- Added NuGet.config to define package sources for dependency management.
- Updated submodule references for OCORE and related projects.
This commit is contained in:
Stefan
2026-07-03 20:22:05 +02:00
parent 1a3bf30442
commit 882e97509a
57 changed files with 2121 additions and 106 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Fuchs: Debug ASP.NET Core",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build Fuchs",
"program": "${workspaceFolder}/Fuchs/bin/Debug/net10.0/Fuchs.dll",
"args": [],
"cwd": "${workspaceFolder}/Fuchs",
"stopAtEntry": false,
"justMyCode": true,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)",
"uriFormat": "%s"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "https://localhost:63661;http://localhost:63662"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Fuchs/Views"
}
}
]
}
+129
View File
@@ -0,0 +1,129 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build Fuchs",
"type": "process",
"command": "dotnet",
"args": [
"build",
"${workspaceFolder}/Fuchs/Fuchs.csproj",
"--configuration",
"Debug",
"/p:RestoreIgnoreFailedSources=true",
"/p:RestoreConfigFile=${workspaceFolder}/NuGet.config"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "gulp: all",
"type": "shell",
"command": "npx",
"args": [
"gulp",
"all"
],
"options": {
"cwd": "${workspaceFolder}/Fuchs"
},
"problemMatcher": []
},
{
"label": "gulp: min",
"type": "shell",
"command": "npx",
"args": [
"gulp",
"min"
],
"options": {
"cwd": "${workspaceFolder}/Fuchs"
},
"problemMatcher": [],
"group": "build"
},
{
"label": "gulp: copy",
"type": "shell",
"command": "npx",
"args": [
"gulp",
"copy"
],
"options": {
"cwd": "${workspaceFolder}/Fuchs"
},
"problemMatcher": []
},
{
"label": "gulp: min:js",
"type": "shell",
"command": "npx",
"args": [
"gulp",
"min:js"
],
"options": {
"cwd": "${workspaceFolder}/Fuchs"
},
"problemMatcher": []
},
{
"label": "gulp: min:css",
"type": "shell",
"command": "npx",
"args": [
"gulp",
"min:css"
],
"options": {
"cwd": "${workspaceFolder}/Fuchs"
},
"problemMatcher": []
},
{
"label": "gulp: min:scss",
"type": "shell",
"command": "npx",
"args": [
"gulp",
"min:scss"
],
"options": {
"cwd": "${workspaceFolder}/Fuchs"
},
"problemMatcher": []
},
{
"label": "gulp: min:html",
"type": "shell",
"command": "npx",
"args": [
"gulp",
"min:html"
],
"options": {
"cwd": "${workspaceFolder}/Fuchs"
},
"problemMatcher": []
},
{
"label": "gulp: watch",
"type": "shell",
"command": "npx",
"args": [
"gulp",
"watch"
],
"options": {
"cwd": "${workspaceFolder}/Fuchs"
},
"isBackground": true,
"problemMatcher": []
}
]
}