Joshmar

Results 2 comments of Joshmar

This issue still persists for me. IDE directories are excluded from windows firewall. For some reason it consistently hangs while typing `Register-PackageSource`. The code example below already causes the issue...

**Suggested solution** The issue is fixed when added the part below to: `CommandLine.Infrastructure.ReflectionHelper.GetNamesOfEnum(Type t)` ```cs public static IEnumerable GetNamesOfEnum(Type t) { if (t.IsEnum) return Enum.GetNames(t); Type u = Nullable.GetUnderlyingType(t); if...