views:

124

answers:

1

In a Visual Studio setup project, is there a way to generate automaticaly the MSI fileName according to the current application version number?

+1  A: 

Are you able to fire post-build code when your .MSI is built? If so, you can use File.IO to rename the file and use something like:

System.Deployment.Application.ApplicationDeployment.CurrentDeployment.CurrentVersion
IPX Ares