Describe the bug
I think (?) this is a bug because this is a property on System.IO.FileSystemInfo that is not on System.IO.Abstractions.IFileSystemInfo. This property was added in .NET 6 to help working with symlinks. See https://docs.microsoft.com/en-us/dotnet/api/system.io.filesysteminfo.linktarget?view=net-6.0
To Reproduce
- Look at ApiParityTests.FileIno_.NET 6.0.snap
- See that "System.String LinkTarget" is marked as a missing member
or
- Write an app that needs to access
LinkTarget
Expected behavior
I would expect IFileSystemInfo to have a LinkTarget property when this package is consumed by a .NET 6 app.
Note
I will be very happy to implement this. The only question I have is how does this project handle multitargetting? Any gotchas I need to know? Otherwise I'll add it and also add tests and such. I need this for something and want to help make it happen.
Describe the bug
I think (?) this is a bug because this is a property on
System.IO.FileSystemInfothat is not onSystem.IO.Abstractions.IFileSystemInfo. This property was added in .NET 6 to help working with symlinks. See https://docs.microsoft.com/en-us/dotnet/api/system.io.filesysteminfo.linktarget?view=net-6.0To Reproduce
or
LinkTargetExpected behavior
I would expect
IFileSystemInfoto have aLinkTargetproperty when this package is consumed by a .NET 6 app.Note
I will be very happy to implement this. The only question I have is how does this project handle multitargetting? Any gotchas I need to know? Otherwise I'll add it and also add tests and such. I need this for something and want to help make it happen.