We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e514c8 commit 4f69e00Copy full SHA for 4f69e00
1 file changed
tools/Ntreev.Crema.ConsoleHost/Program.cs
@@ -20,6 +20,7 @@
20
using System.Collections.Generic;
21
using System.Diagnostics;
22
using System.Linq;
23
+using System.Reflection;
24
using System.Text;
25
using System.Threading.Tasks;
26
@@ -37,6 +38,14 @@ static void Main(string[] args)
37
38
commandContext.VerifyName = false;
39
commandContext.Execute(Environment.CommandLine);
40
}
41
+ catch(ReflectionTypeLoadException e)
42
+ {
43
+ Console.WriteLine(e);
44
+ foreach(var exception in e.LoaderExceptions)
45
46
+ Console.WriteLine(exception);
47
+ }
48
49
catch (Exception e)
50
{
51
Console.WriteLine(e.Message);
0 commit comments