How do I get the Assembly version from my sln into a continuous integration labeller? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:48:20Z http://stackoverflow.com/feeds/question/870663 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/870663/how-do-i-get-the-assembly-version-from-my-sln-into-a-continuous-integration-label 2 How do I get the Assembly version from my sln into a continuous integration labeller? nportelli 2009-05-15T20:12:52Z 2009-05-25T10:39:24Z <p>I want to obtain the assembly version from my solution and apply that to a cc.net label. I think I'm doing it backwards since all the info out there have the CI server set the version. But I'm not sure how to integrate different release versions and the development branch into CI. Every time we release we up the revision number. Would/should I add a new project in cc.net for every branch? Is there a way to automatically get the latest branch? Sorry for so many different questions in one...question. I'm new to this CI stuff.</p> http://stackoverflow.com/questions/870663/how-do-i-get-the-assembly-version-from-my-sln-into-a-continuous-integration-label/870693#870693 1 Answer by IainMH for How do I get the Assembly version from my sln into a continuous integration labeller? IainMH 2009-05-15T20:21:10Z 2009-05-15T20:21:10Z <p>You will find this all much easier if you switch to <a href="http://www.jetbrains.com/teamcity/" rel="nofollow">TeamCity</a>. I've wrestled with so many nant scripts/cruisecontrol config files in the past I'm almost blind from angle brackets.</p> <p>I cried like the accountant who was shown the first spreadsheet program when I started messing with TeamCity. It will make your life 1000% easier.</p> http://stackoverflow.com/questions/870663/how-do-i-get-the-assembly-version-from-my-sln-into-a-continuous-integration-label/906150#906150 2 Answer by Dennis van der Stelt for How do I get the Assembly version from my sln into a continuous integration labeller? Dennis van der Stelt 2009-05-25T10:10:57Z 2009-05-25T10:10:57Z <p>FinalBuilder and the AssemblyInfo Updater</p> <p>[Update : Cool, can't add hyperlinks. Put FinalBuilder and 3xw en dotcom in the end in front of the following url:) /Products/FinalBuilder/FeatureMatrix/FeaturesCompilerActions/tabid/98/Default.aspx</p> <ol> <li>Use "PropertySet Define" based on .NET Assembly Numbers</li> <li>Use "PropertySet Load"</li> <li>Use "PropertySet Incremement"</li> <li>Use "AssemblyInfo Updater" to save it again</li> </ol> <p>And you're done. :)</p>