Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ private Assembly LoadAssemblyInternal(ManagedLibrary managedLibrary, ManagedAsse
private bool SearchForLibrary(ManagedLibrary library, ManagedAssemblyLoadContext loadContext, out string path)
{
// 1. Check for in _basePath + app local path
var localFile = Path.Combine(loadContext.BasePath, library.AppLocalPath);
var localFile = Path.Combine(loadContext.BasePath, Path.GetFileName(library.AppLocalPath));
if (File.Exists(localFile))
{
path = localFile;
Expand Down
Loading