public static IResponse GetConfigFilepath(IRequest request)
        {
            GetConfigFilePathRequest message = GetConfigFilePathRequest.Read(request);
            string path = ConfigParser.GetConfigFilepath(message.ProjectPath);

            return(new GetConfigFilePathResponse(path));
        }