Ejemplo n.º 1
0
        public static IResponse GetConfigFilepath(IRequest request)
        {
            GetConfigFilePathRequest message = GetConfigFilePathRequest.Read(request);
            string path = ConfigParser.GetConfigFilepath(message.ProjectPath);

            return(new GetConfigFilePathResponse(path));
        }
Ejemplo n.º 2
0
        public override string GetConfigFilepath(string projPath)
        {
            GetConfigFilePathRequest message = new GetConfigFilePathRequest(projPath);
            var result = _messageRouter.Send(message);

            return(GetConfigFilePathResponse.Read(result).FilePath);
        }