I'm using TortoiseSVN and Visual Studio 2008. Is there any way to update my project's assemblyinfo.cs with svn's version in every build?
For example, 1.0.0.[svn's version] -> 1.0.0.12
|
I'm using TortoiseSVN and Visual Studio 2008. Is there any way to update my project's assemblyinfo.cs with svn's version in every build? For example, 1.0.0.[svn's version] -> 1.0.0.12 |
||||
|
|
You could use the SubWCRev tool which comes with TortoiseSVN (also available separately). Either run it from a command line or use the COM-Object it offers. The SubWCRev command line tool replaces keywords inside a file with information from your svn working copy. An example is shown in the docs. |
|||||||||||||
|
|
I do this in my build script:
using the community build tasks. This essentially applies a regex to the AssemblyInfo.cs, replacing the current revision with the svn revision. |
|||||||||
|
|
You could use the Give a look to this question: |
|||
|
|
|
How do you feel about a Visual Studio addin doing it? |
|||||||
|
|
Yes, you can add a pre-build event that calls a script which
What I usually do is transform a AssemblyInfo.cs template when the project is built. The script is necessary to adapt the form of $Revision$ to the syntax of this file, unfortunately. The interesting properties are (where the template strings are between '$'):
Edit: |
||||
|
|
|
In Visual Studio 2008, you can define a pre-build event that can launch a script or small program. Within this script or program, you can use the svnversion command to get the repository revision, then parse your AssemblyInfo.cs and modify the version number to what you desire. I'm not sure if TortoiseSVN comes with svnversion, but it does come with the Windows SVN build provided by CollabNet |
|||
|
|
|
I created an SVN version plug-in for the Build Version Increment project (which is named in popester's answer). This SVN plug-in will pull the latest change revision number from your working copy and allow you to use that in your version number, which should accomplish exactly what you're trying to do. |
|||
|
|