Exemplo n.º 1
0
        public void RemovePathMapping(string prefix, string mapPath)
        {
            if (DebugMode)
            {
                return;
            }

            if (mapPath != null)
            {
                PathMappings.TryRemove(prefix + ">" + mapPath, out _);
            }
        }
Exemplo n.º 2
0
        public void RemovePathMapping(string prefix, string mapPath)
        {
            if (DebugMode)
            {
                return;
            }

            if (mapPath != null)
            {
                PathMappings.TryRemove($"{prefix}>{mapPath}", out _);
            }
        }