Skip to content

Commit 60d36db

Browse files
Merge pull request #45 from romansp/fix-44
Removed adding of '.dll' extension during assembly resolves.
2 parents 648781c + 26d49e6 commit 60d36db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Reinforced.Typings.Cli/Bootstrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ public static Assembly CurrentDomainOnAssemblyResolve(object sender, ResolveEven
233233
{
234234
if (args.Name.StartsWith("Reinforced.Typings.XmlSerializers")) return Assembly.GetExecutingAssembly();
235235
AssemblyName nm = new AssemblyName(args.Name);
236-
string path = LookupAssemblyPath(nm.Name + ".dll", false);
236+
string path = LookupAssemblyPath(nm.Name, false);
237237
Assembly a = Assembly.LoadFrom(path);
238238
_totalLoadedAssemblies++;
239239
#if DEBUG

0 commit comments

Comments
 (0)