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

            return(new GetConfigFilePathResponse(path));
        }