I'd like my .exe to have access to a resource string with my svn version. I can type this in by hand, but I'd prefer an automated way to embed this at compile time. Is there any such capability in Visual Studio 2008?
|
4
|
|
|
|
|
|
I wanted a similar availability and found $Rev$ to be insufficient because it was only updated for a file if that file's revision was changed (which meant it would have to be edited and committed very time: not something I wanted to do.) Instead, I wanted something that was based on the repository's revision number. For the project I'm working on now, I wrote a Perl script that runs This script is run as a pre-build step so that everything is up-to-date before the build kicks off and the appropriate files are automatically rebuilt by your build tool. |
||||||
|
|
|
You can get SVN to embed it for you, if that will solve the problem. See the $Rev$ keyword on that page. |
||||
|
|
|
Have a look at svn keyword substitution here. There is another SO question here which I found through google! |
||
|
|
|
|
antik's solution is the one we use. Be careful of using environment variables, the .h file ensures you can have a dependency which will cause any files that need it to be recompiled when the svn rev number changes. |
||
|
|
|
How about using SubWCRev the command line tool that ships with TortoiseSVN. You create a template file with tokens in it like $WCREV$ $WCDATE$ etc. Then have a pre-build step that run SubWCRev on your template file to create the actual source file that is fed to the compiler. |
||
|
|
