I'm trying to get my build number into the web.config of an ASP.Net MVC project (long story, but there is a reason)... something like this:
<appSettings>
<add key="version" value="1.0.3936.27150" />
</appSettings>
Right now, I'm doing it with an executable on the post-build event by looking at the assembly to get the version and stuff that into the web.config. It works, but isn't exactly what I was looking for.
Any easy way to do this easier / cleaner? Thanks for any advice / suggestions.