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 95a37bd commit 79f3cc4Copy full SHA for 79f3cc4
source/MetadataProcessor.Core/Utility/LoadHintsAssemblyResolver.cs
@@ -46,6 +46,13 @@ public override AssemblyDefinition Resolve(AssemblyNameReference name)
46
return null;
47
}
48
49
+ catch(System.IO.DirectoryNotFoundException)
50
+ {
51
+ Console.Error.WriteLine(
52
+ $"Unable to find assembly '{name.Name}' in load hints collection.");
53
+
54
+ throw;
55
+ }
56
catch (Exception)
57
{
58
throw;
0 commit comments