You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
I'm working on a project with multiple schemes and noticed that autocompletion only works for the scheme set in buildServer.json. This makes it a bit challenging to work on multiple schemes at the same time.
Proposal:
Would it be possible to add support for autocompletion across multiple schemes simultaneously? This would make it easier to work on projects with more than one active scheme without needing to switch settings constantly.
Questions:
Do you think this would be a useful feature?
Do you think it's technically possible to implement?
Offer to Help:
If it's possible but not on your roadmap, I'd be happy to try implementing it myself. Let me know what you think!
The text was updated successfully, but these errors were encountered:
Thank you for your advice. This seems to be a very useful ability. However, to support such capabilities, it is necessary to deal with the problem of flags conflicts between the same file and different schema. The optional strategy is to set the priority, which can be the last build time, or the user can specify it manually. I tend to automatic support all schemes, according to the last build time. this way just need to merge all build log, observe any scheme changes, and it will be ok.
PS: The current flags source itself supports merge. If you select a scheme first and then switch to another scheme after running, you will find that the files of both schemes are supported. The files unique to the previous scheme still retain the previous flags, but because it is not the current scheme, the update will not trigger the update.
PS2: Use the config command to change the buildServer configuration regenerated by the scheme, which takes effect in real time.
Just implement in lastest HEAD, to omit scheme in xcode-build-server config, to bind to the lastest scheme build result. switch scheme should as easy as just build it.
Hi @SolaWing ,
Description:
I'm working on a project with multiple schemes and noticed that autocompletion only works for the scheme set in buildServer.json. This makes it a bit challenging to work on multiple schemes at the same time.
Proposal:
Would it be possible to add support for autocompletion across multiple schemes simultaneously? This would make it easier to work on projects with more than one active scheme without needing to switch settings constantly.
Questions:
Do you think this would be a useful feature?
Do you think it's technically possible to implement?
Offer to Help:
If it's possible but not on your roadmap, I'd be happy to try implementing it myself. Let me know what you think!
The text was updated successfully, but these errors were encountered: