-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add support for .NET9 #735
Conversation
👽 Mutation ResultsTestably.Abstractions.AccessControlDetails
The final mutation score is NaN%Coverage Thresholds: high:80 low:60 break:0Testably.Abstractions.CompressionDetails
The final mutation score is NaN%Coverage Thresholds: high:80 low:60 break:0Testably.AbstractionsDetails
The final mutation score is 0.00%Coverage Thresholds: high:80 low:60 break:0Testably.Abstractions.TestingDetails
The final mutation score is 100.00%Coverage Thresholds: high:80 low:60 break:0 |
Test Results 51 files + 15 51 suites +15 23m 8s ⏱️ + 7m 19s Results for commit 4436365. ± Comparison against base commit 29983ca. This pull request removes 33588 and adds 50912 tests. Note that renamed tests count towards both.
This pull request removes 1586 skipped tests and adds 2411 skipped tests. Note that renamed tests count towards both.
♻️ This comment has been updated with latest results. |
- `string Combine(params ReadOnlySpan<string> paths)` - `string Join(params ReadOnlySpan<string?> paths)`
- `void AppendAllBytes(string, byte[])` - `void AppendAllBytes(string, ReadOnlySpan<byte>)` - `Task AppendAllBytesAsync(string, byte[], CancellationToken)` - `Task AppendAllBytesAsync(string, ReadOnlyMemory<byte>, CancellationToken)` - `void AppendAllText(string, ReadOnlySpan<char>)` - `void AppendAllText(string, ReadOnlySpan<char>, Encoding)` - `Task AppendAllTextAsync(string, ReadOnlyMemory<char>, Encoding, CancellationToken)` - `Task AppendAllTextAsync(string, ReadOnlyMemory<char>, CancellationToken)` - `void WriteAllBytes(string, ReadOnlySpan<byte>)` - `Task WriteAllBytesAsync(string, ReadOnlyMemory<byte>, CancellationToken)` - `void WriteAllText(string, ReadOnlySpan<char>)` - `void WriteAllText(string, ReadOnlySpan<char>, Encoding)` - `Task WriteAllTextAsync(string, ReadOnlyMemory<char>, Encoding, CancellationToken)` - `Task WriteAllTextAsync(string, ReadOnlyMemory<char>, CancellationToken)`
FileSystem
support for .NET9
FileSystem
support for .NET9
|
This is addressed in release v4.0.0. |
For
File
:void AppendAllBytes(string, byte[])
void AppendAllBytes(string, ReadOnlySpan<byte>)
Task AppendAllBytesAsync(string, byte[], CancellationToken)
Task AppendAllBytesAsync(string, ReadOnlyMemory<byte>, CancellationToken)
void AppendAllText(string, ReadOnlySpan<char>)
void AppendAllText(string, ReadOnlySpan<char>, Encoding)
Task AppendAllTextAsync(string, ReadOnlyMemory<char>, Encoding, CancellationToken)
Task AppendAllTextAsync(string, ReadOnlyMemory<char>, CancellationToken)
void WriteAllBytes(string, ReadOnlySpan<byte>)
Task WriteAllBytesAsync(string, ReadOnlyMemory<byte>, CancellationToken)
void WriteAllText(string, ReadOnlySpan<char>)
void WriteAllText(string, ReadOnlySpan<char>, Encoding)
Task WriteAllTextAsync(string, ReadOnlyMemory<char>, Encoding, CancellationToken)
Task WriteAllTextAsync(string, ReadOnlyMemory<char>, CancellationToken)
For
Path
:string Combine(params ReadOnlySpan<string> paths)
string Join(params ReadOnlySpan<string?> paths)
For
Guid
:Guid CreateVersion7()
Guid CreateVersion7(DateTimeOffset)