#1
|
|||
|
|||
Detecting C# changes
Does anyone know of a way to detect if a new version of a binary from C# was built.
The output just says how many projects built, not which ones were successful. Last edited by rfktp; 12-17-2008 at 11:56 AM. |
#2
|
|||
|
|||
You would need to store the version or timestamp of the executable before building and compare afterwards.
|
#3
|
|||
|
|||
Some projects the time stamp changes even though the code did not
|
#4
|
|||
|
|||
Then you would probably need to make a copy of the executable before and compare it afterwards.
http://www.ss64.com/nt/fc.html |
|
|