Is it possible to move the WCF Service contract to a separate configuration XML file, so that they can be modified on production, without having the need for redeployment.
To be specific, it is possible to move this code from .cs file to some other .xml file, which will allow me to modify the contract, post deployment.
[ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Multiple, InstanceContextMode = InstanceContextMode.Single, UseSynchronizationContext = false)]
Note: This is for a WinForms(Desktop) application.