Support Async File Methods
vbreuss opened this issue · 2 comments
vbreuss commented
Is your feature request related to a problem? Please describe.
.NET Core (since 2.1) introduced async overloads for many File methods, e.g. ReadAllTextAsync.
As these are not part of the IFileSystem
interface, I can't use async file access via this package.
Describe the solution you'd like
System.IO.Abstractions should support async file access for .NET Core
Describe alternatives you've considered
None
Additional context
None
fgreinacher commented
This has the same root cause as #841 - sorry 😬
vbreuss commented
OK, thanks for the explanation!