Answer by Keith Adler for Versioning an ASP.NET web app
It's not a bad idea. The solution to get your ASP.NET Web App DLL version is simple:VB.NETMy.Application.Info.Version (VB.NET)C#Gain access to the My namespace as shown here...
View ArticleAnswer by Rex M for Versioning an ASP.NET web app
We do the same thing in our application. Although you can add the version number manually, our version info is added to the assembly as part of our automated build process (we use a customized TFS 2008...
View ArticleAnswer by David A Gibson for Versioning an ASP.NET web app
You can use version numbers in the way you describe, just changing the numbers in the AssemblyInfo file as you build new releases but it's better when linked to a Source Control system. We use...
View ArticleAnswer by John Hoven for Versioning an ASP.NET web app
Given an Assembly a, use a.GetName().Version.ToString() to get the version in code.GetName returns an AssemblyName.The version returns the version as specified in your AssemblyInfo file.
View ArticleAnswer by Chuck Conway for Versioning an ASP.NET web app
We automate the versioning with subversion, ccnet and nant.Our script parses the folder path( /Branches/1.4.5/Source...) and extracts the version number (1.4.5). After that we retrieve the current...
View ArticleVersioning an ASP.NET web app
I'm not even sure if versioning is the right word for it, but it'll have to do. I want to start putting a 'Version x.x.xx' note on our internal apps by request of our users, so they have a rough of...
View Article