I have a solution (sln file) file that contain several projects.
The sln is referring to two projects :
- I have a csharp project that its output is an executable assembly , along with configuration file , this project has a product version defined which increase from time to time.
- I have a project that when i Build it
, it create an MSI installation
Package which know how to install the other project output in some client
machine.
Is there a way to embed a product version into the msi package? Can the MSI Package has its own product version?
Thanks in advance.