Skip to content

Commit 079dad0

Browse files
authored
chore: Updated release notes and some build deps (#88)
1 parent 767c687 commit 079dad0

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "C# (.NET Core)",
3-
"image": "mcr.microsoft.com/vscode/devcontainers/dotnet:5.0",
3+
"image": "mcr.microsoft.com/vscode/devcontainers/dotnet:9.0",
44
"settings": {
55
"terminal.integrated.shell.linux": "/bin/bash"
66
},

ReleaseNotes.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
1-
2.0.0
1+
# Release Notes
2+
3+
List of notable changes between majors
4+
5+
## 22.0.0
6+
7+
- (Breaking) Removed support for some Async calls in .NET Framework and
8+
legacy versions of .NET to better support .NET 8 and later
9+
- Minimum required TestableIO.System.IO.Abstractions version is now 22.x
10+
- Removed .NET 7 build (should still work with .NET standard build)
11+
- Removed .NET 6 build (should still work with .NET standard build)
12+
13+
## 2.0.0
14+
215
- (Breaking) Moved all extensions methods to 'System.IO.Abstractions' namespace
316
- Added ThrowIfNotFound extension methods
417
- Removed .NET 5 build (should still work with .NET standard build)

tests/System.IO.Abstractions.Extensions.Tests/System.IO.Abstractions.Extensions.Tests.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@
1414
<ItemGroup>
1515
<PackageReference Include="TestableIO.System.IO.Abstractions.Wrappers" Version="22.0.10" />
1616
<PackageReference Include="NUnit" Version="4.3.2" />
17-
<PackageReference Include="NUnit.Analyzers" Version="4.3.0" />
17+
<PackageReference Include="NUnit.Analyzers" Version="4.6.0">
18+
<PrivateAssets>all</PrivateAssets>
19+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
20+
</PackageReference>
1821
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0" />
1922
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
2023
<PackageReference Include="coverlet.collector" Version="6.0.4" />

0 commit comments

Comments
 (0)