Hello, we want to build our projects with the command line, like :
xcodebuild -target "OurTarget" -configuration "OurConfig" -archivePath "project.xcarchive" -scheme "OurScheme" archive
to be able to then, make a build with :
xcodebuild -exportArchive -archivePath "project.xcarchive" -exportPath "build" -exportOptionsPlist "build/exportOptions.plist"
The problem is that we are using a script to export our project which remove all user data like scemes.
So, what would be the best solution to use these commands without scheme ?
Best regards