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
.Net needs a way to represent a path that isn't a string but a struct or class. I am working on the GitExtensions project. Git returns linux paths. Creating a System.URI instance with a path like /d/git/GitExtensions/ fails on Windows. I have found a few projects that try to manage paths.
Being able to store a normalized path in our variables that can be translated to URIs or posix or... would be very helpful. All of the following paths should be stored in a normalized posix format that can then be used in any path usage.
Related: #14590
.Net needs a way to represent a path that isn't a string but a struct or class. I am working on the GitExtensions project. Git returns linux paths. Creating a System.URI instance with a path like
/d/git/GitExtensions/
fails on Windows. I have found a few projects that try to manage paths.Being able to store a normalized path in our variables that can be translated to URIs or posix or... would be very helpful. All of the following paths should be stored in a normalized posix format that can then be used in any path usage.
I was hoping I could use System.URI as the backing store of the path objects but linux paths are a no go so I am looking into other solutions.
The text was updated successfully, but these errors were encountered: