I have a web-service that I will deploy for dev, intermediate build and production. Along with this, there will be an ASP.net application that will be deployed separately, but also in these three phases.
What is the most pragmatic way to change the next line in a web service to fit the current environment?
[WebService(Namespace = "http://dev.mycompany.com/MyAppsWebService")] [WebService(Namespace = "http://stage.mycompany.com/MyAppsWebService")] [WebService(Namespace = "http://mycompany.com/MyAppsWebService")]
source share