You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently when running app from the long path you need to prefix the path with \\?\ which is causing that AppDomain.CurrentDomain.BaseDirectory also starts with that. Some apps might pass the directory into component which doesn't expect it (in .NET Framework BaseDirectory could be an URI so some apps could have passed it into Uri which would throw if it encounters anything starting with \\?\).
Currently when running app from the long path you need to prefix the path with
\\?\
which is causing thatAppDomain.CurrentDomain.BaseDirectory
also starts with that. Some apps might pass the directory into component which doesn't expect it (in .NET Framework BaseDirectory could be an URI so some apps could have passed it intoUri
which would throw if it encounters anything starting with\\?\
).See #58627 (comment) and #58712 for more context
The text was updated successfully, but these errors were encountered: