Hello!
Im currently facing a problem where I need to have a string with the current version of my application and this needs to change automatically every time Unity is built. After some research Ive come across the following tag:
[assembly:AssemblyVersion ("1.0.*.*")]
But this only seems to work at the AssemblyInfo.cs file, which my .csproj isnt making, so my next step was to manually change this .csproj to include the creation of the .cs, following this article. This didnt work since everytime I run Unity this file will just get rewritten.
As a side note, Im using Mono for coding and GIT for version control, so the perfect world here would be to use GIT Revision as part of the version string I need, which should be something similar to what I found here, which uses Hudson and SVN.
So, how can I make this work? What am I missing?
Thank you!