SVN provides the possibility to get the revision number of a single file with the property $Revision$. This is fine for a single file. I'm using it in a C++ project that consists of several files in a single folder. Is there a similar way to get one single revision number of the complete project ? In my understanding this should be the highest version number of all the files in the project folder.
I already know that it is possible to get the latest revision number using a bash script but I'd like to avoid this.