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

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

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