In Xcode 7, I would like the name of the product to be something like myapp.3.23
where myapp
is the target name, 3 is the version and 23 is the build. I tried by setting the product name of my target to $TARGET_NAME.$CURRENT_PROJECT_VERSION
(and also $(TARGET_NAME).$(CURRENT_PROJECT_VERSION)
) but only $TARGET
seems to work.
Any clue?
Edit: I am trying to do so from Xcode's Build settings panel, setting the desired value in the Packaging > Product name field.