namespace CustomTasks.Endpoint { /// /// Endpoint overrider: will override the endpoints.json file and remove/add endpoints /// Based on a json input file for addition and removal /// interface IEndpointOverrider { /// /// Applies overrides to an endpoints.json file /// /// The endpoints.json source location /// The path to the endpoints override json file /// String: the new endpoints.json input text. string ApplyOverrides(string endpointsJsonSourceFilePath, string endpointsOverrideFilePath); } }