.NET loading failed with UNC path - Logger.GetAssemblyFilePath breaks UNC path
We having trouble loading a website from an UNC path.
If checked the code, and the problem is in Logger.GetAssemblyFilePath
- ExeSessionProcess.GetExecutablePath() fails for UNC paths, it's using Logger.GetAssemblyFilePath, and there is a file:// trick inside it.
In case of the UNC path, the Assembly.Codebase of dll is: "file://myUNCFolder/folder/bin/myDll.DLL" - (that's correct)
By removing the file:// prefix in Logger.GetAssemblyFilePath, it will be "myUNCFolder/folder/bin/myDll.DLL" - and that's incorrect.
Are Pull requests accepted to GitHub? It's correct that there aren't any unit tests yet?
If checked the code, and the problem is in Logger.GetAssemblyFilePath
- ExeSessionProcess.GetExecutablePath() fails for UNC paths, it's using Logger.GetAssemblyFilePath, and there is a file:// trick inside it.
In case of the UNC path, the Assembly.Codebase of dll is: "file://myUNCFolder/folder/bin/myDll.DLL" - (that's correct)
By removing the file:// prefix in Logger.GetAssemblyFilePath, it will be "myUNCFolder/folder/bin/myDll.DLL" - and that's incorrect.
Are Pull requests accepted to GitHub? It's correct that there aren't any unit tests yet?