Skip to content

Commit

Permalink
Fixed assembly loading.
Browse files Browse the repository at this point in the history
  • Loading branch information
jp2masa committed May 7, 2018
1 parent f8db80a commit 3be8b12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/XSharp.Compiler/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private static void Main(string[] aArgs)
}
else if (xExt == ".DLL")
{
xAssemblies.Add(Assembly.ReflectionOnlyLoadFrom(xVal));
xAssemblies.Add(Assembly.LoadFrom(xVal));
}
else
{
Expand Down

0 comments on commit 3be8b12

Please sign in to comment.