We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10050c4 commit e673d14Copy full SHA for e673d14
ReadableExpressions.Visualizers.Installer.Custom/RegistryData.cs
@@ -79,6 +79,12 @@ public IEnumerable<Visualizer> GetInstallableVisualizersFor(Visualizer visualize
79
80
yield return targetVisualizer;
81
82
+ if (!Directory.Exists(pathToVisualizers))
83
+ {
84
+ // This will be filtered out and logged later:
85
+ continue;
86
+ }
87
+
88
var netStandardSubDirectories = Directory
89
.EnumerateDirectories(pathToVisualizers)
90
.Select(path => new DirectoryInfo(path))
0 commit comments