Link to home
Start Free TrialLog in
Avatar of curiouswebster
curiouswebsterFlag for United States of America

asked on

Automatic version increment on a C# program?

I have a web service I'd like to deploy and would like to remotely check the version number.  But I do not want to take the risk that I forgot to increment some value before deployment.  I want to be certain that a new version arrived and was deployed.

Is therea build number or some other unique value (or string) that the program can reference and return when I create a Getersion() web method?

thanks,
newbieweb
ASKER CERTIFIED SOLUTION
Avatar of Gary Davis
Gary Davis
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of curiouswebster

ASKER

Greg,

Maybe I'll have a public version like you say, but a private version as well, so I can be sure that multiple servers running the same web service in fact have the same build.


Bob