Auto generate api client

This commit is contained in:
Guilherme Werner 2025-12-16 18:44:07 -03:00
parent 79236af76b
commit f75e0275cc
712 changed files with 277698 additions and 885 deletions

15
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "C#: Debug",
"preLaunchTask": "build",
"type": "coreclr",
"request": "launch",
"program": "dotnet",
"args": ["${workspaceFolder}/src/ProxmoxSharp.Tests/bin/Debug/net8.0/ProxmoxSharp.Tests.dll"],
"cwd": "${workspaceFolder}",
"console": "internalConsole"
}
]
}