Click here to Skip to main content
15,892,643 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have one project with multiple versions and installed on different client sides. I changed in .cs file on new version but not to all versions. I installed updated version on some client side. in this request is comming form each client. now i want to check if changes made in .cs file then some code is executed or if changes not applied to any client then piece of code not executed. i made changes in method of .cs file..

can anybody help me..?
Posted
Updated 29-Jan-15 1:10am
v2
Comments
Richard MacCutchan 29-Jan-15 7:24am    
There are plenty of free tools on the internet that can compare file versions. And if you want to know which version the client has installed then use proper version control in your source code, and version numbering in your released products.

1 solution

I'm going to take a leap here and guess that you haven't used any sensible version numbering. Definitely take Richard MacCutchan's advice and use proper version control - there are plenty out there.

If you want to determine the disassembled contents of the different executables you can use the ildasm[^] tool that comes with Visual Studio.

If you need to compare the outputs from different versions of the exe then get a text comparison tool e.g. http://winmerge.org/[^] (free).
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900