Open rudrankriyam opened 3 weeks ago
Hello! Before performing an actual "build" action, the extension tries to detect schemes, configurations, and build settings by executing the xcodebuild -showBuildSettings and xcodebuild -list commands. I think the slowdown comes from these commands because, when I've executed them for the first time, I also noticed that they run slowly. Of course, the results are cached for subsequent calls, but unfortunately, the first execution will always be slow.
One way to improve this is by parsing the files manually, but Iām not sure Iām ready to commit to this. You can also can debug this by setting log level to the "debug" in .vscode/settings.json and see all comands that extension executes:
{
"sweetpad.system.logLevel": "debug"
}
Hi! I have noticed there is some delay (3 to 5 seconds) when executing the commands, going from:
to
Do you know what can be the reason behind this?