private static void AddFileListAttr()

in src/RefasmerExe/Program.cs [62:74]


    private static void AddFileListAttr(string v, Dictionary<string, string> attrs)
    {
        if (!string.IsNullOrEmpty(v))
        {
            var split = v.Split('=');
            if (split.Length == 2)
            {
                attrs[split[0]] = split[1];
                return;
            }
        }
        throw new InvalidOptionException("FileList attr should be like name=value");
    }