Releases: TestableIO/System.IO.Abstractions
Releases · TestableIO/System.IO.Abstractions
v8.0.1
Reduce target frameworks (#540) This change reduces the target frameworks this library supports to .NET Standard 2.0 and 2.1. The goal of this change is to reduce maintenance efforts and get rid of legacy workarounds. As this is a breaking change for consumers (e.g. no more support from .NET Framework < 4.7) the major version is bumped to 8. If you need support for older frameworks feel free to stay at v7.1.10 or fork this repo from 86066e0.
v7.1.10
Merge pull request #539 from System-IO-Abstractions/dependabot/nuget/…
v7.1.8
Merge pull request #536 from sszakal/add-enumerationoptions-to-idirec…
v7.1.4
Bump Nerdbank.GitVersioning from 3.0.28 to 3.0.48 Bumps [Nerdbank.GitVersioning](https://github.com/AArnott/Nerdbank.GitVersioning) from 3.0.28 to 3.0.48. - [Release notes](https://github.com/AArnott/Nerdbank.GitVersioning/releases) - [Commits](https://github.com/AArnott/Nerdbank.GitVersioning/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
v7.1.3
Merge pull request #534 from System-IO-Abstractions/dependabot/nuget/…
v7.1.1
Enable File.Replace for all but netstandard1.4 According to the documentation, File.Replace is a part of .NET Standard 2.0 and supported by Core 2.0 and later. Related to #334 but does not attempt to address all methods that might be supported by .NET Standard/Core 2.0 and later.
v7.0.16
Try triggering stale bot
v7.0.15
Rotate NuGet publishing key
v7.0.7
Merge pull request #518 from System-IO-Abstractions/dependabot/nuget/…
v7.0.5
fix(439): Pattern "*." returns only files with no extension (#516) * fix(439): Add special case to Directory.GetFilesInternal to return only files without extensions when search pattern is "*." * Added files with no extension to the existing tests in MockDirectoryTests. * fix(439): Pattern *. works as System.Directory. * Fix for case sensitive paths.