I have an MSI installer project that installs a windows service.
For every release manually I have to change the Version number in the properties box.
For Ex: 1.0.35.
How do I change the same from the command line by passing a parameter instead of changing it in the solution file.
In the .proj
file I use the following command to build by solution file.
<Exec Command=""C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe" $(work_dir)\myproj\client\windows\msm32b\msm32b.sln /Build"/>
This command packages the binaries such as dll's
, exe's
, sys files
etc as a MSI file. Currently I am changing the Version number manually in the properties box. How do I change the version from the command line.