Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "C# (.NET Core)",
"image": "mcr.microsoft.com/vscode/devcontainers/dotnet:5.0",
"image": "mcr.microsoft.com/vscode/devcontainers/dotnet:9.0",
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
Expand Down
15 changes: 14 additions & 1 deletion ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
2.0.0
# Release Notes

Check notice on line 1 in ReleaseNotes.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

ReleaseNotes.md#L1

Expected: [None]; Actual: # Release Notes

List of notable changes between majors

## 22.0.0

- (Breaking) Removed support for some Async calls in .NET Framework and
legacy versions of .NET to better support .NET 8 and later
- Minimum required TestableIO.System.IO.Abstractions version is now 22.x
- Removed .NET 7 build (should still work with .NET standard build)
- Removed .NET 6 build (should still work with .NET standard build)

## 2.0.0

- (Breaking) Moved all extensions methods to 'System.IO.Abstractions' namespace
- Added ThrowIfNotFound extension methods
- Removed .NET 5 build (should still work with .NET standard build)
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
<ItemGroup>
<PackageReference Include="TestableIO.System.IO.Abstractions.Wrappers" Version="22.0.10" />
<PackageReference Include="NUnit" Version="4.3.2" />
<PackageReference Include="NUnit.Analyzers" Version="4.3.0" />
<PackageReference Include="NUnit.Analyzers" Version="4.6.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="coverlet.collector" Version="6.0.4" />
Expand Down