I'm developing a C# .net application in visual studio that I'm version controlling with tortoise SVN.
My question is this: Is there a way i can link the assembly version of my main project eg:
[assembly: AssemblyVersion("2.2.3.4")]
To the revision number in tortoise SVN.
In such a way that i can check out revision 2.2.3.4 directly instead of checking out eg. revision 52 (or whatever revision equals version 2.2.3.4).
That would make it easier for me when I'm trying to get a specific version of my program as i don't have to figure out what SVN revision number equals the software version number I'm looking for.
Thanks