Revert "Fix GetEntryAssemblyLocation Uri (#4799)" (#5004)

This reverts commit 9cdfdc3819.
This commit is contained in:
Ryland 2021-08-04 13:45:52 -07:00 коммит произвёл GitHub
Родитель b06a5f1195
Коммит a49e7e2073
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -73,7 +73,8 @@ namespace MS.Internal.AppModel
BaseUriHelper.GetAssemblyNameAndPart(Uri, out filePath, out assemblyName, out assemblyVersion, out assemblyKey);
// filePath should not have leading slash. GetAssemblyNameAndPart( ) can guarantee it.
_fullPath = System.IO.Path.Combine(codeBase.LocalPath, filePath);
Uri file = new Uri(codeBase, filePath);
_fullPath = file.LocalPath;
}
stream = CriticalOpenFile(_fullPath);