0
Currently, when updating the version of an msi, we need to update it in five places:
- The Assembly Info of the primary .csproj
- The filename of the .msi in the Setup project - e.g. 'MyApp 1.2.1.msi'
- The Version of the .msi in the Setup project - e.g. '1.2.1'
- The ProductName of the .msi in the Setup project - e.g. 'MyApp '1.2.1'
- The Title of the .msi in the Setup project - e.g. 'MyApp 1.2.1'
Is there some way to reduce these steps but still get the version number in all of them? I tried putting a ProductName of 'MyApp $(TargetName)' but it interpreted it literally.