How to change from one project, assembly version of another project (.exe)? I have source for both projects.
Asked
Active
Viewed 966 times
3
-
Why would you want to just change the assembly versions, they are used for a particular reason and incremented for changes made in the assembly – V4Vendetta Oct 04 '11 at 05:30
-
i develop an updater for my app.. My boss dont want to use XML file with version instead getting assembly version. I dont know why (may be some can me explain reasons?)? And when i update my app, i need to increment assembly version of main executable file from updater. – WelcomeTo Oct 04 '11 at 05:33
-
If that file is not modified/patched, you should not change it via your updater. About how to display version numbers, you may learn from Visual Studio, which uses registry keys, instead of the one embedded in the dll/exe. – Lex Li Oct 04 '11 at 06:08
2 Answers
4
I once had a similar question, the best answers I got was to share an AssemblyVersion.cs
file across the projects.
In my scenario this was a very good solution.