I'm developing a program in C# .net in visual studio and version controlling it with tortoise SVN.
at present I'm creating the assembly version based on the build number.
Is there a way I can link the final part of a projects assembly version to the revision number in tortoise SVN instead, eg:
pseudo code:
[assembly: AssemblyVersion("1.0.0."+SvnRevisionNumber.ToString())]
This would ensure that my assemblies were named after, not their build number, but after the last revision number committed to the repository.