I have a xcworkspace with 2 targets: targetA and targetB.
- TargetA is dependent of the library that requires xCode 15.3.
- TargetB is a framework that I want to continue supporting on xCode 14.1 and is not dependent of any library at all.
The problem occurs when I archive my TargetB via xcodebuild archive command on xCode 14.1. It doesn't build it due to Package.resolved error and requires me to use xCode 15.3 command line tools (for the dependency of TargetA).
Is there a way to explicitly tell to xcodebuild archive command to ignore SPM for my TargetB?