File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/FsToolkit.ErrorHandling
tests/FsToolkit.ErrorHandling.Tests Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,21 +2,21 @@ namespace FsToolkit.ErrorHandling
22open System
33
44type ExceptionNull =
5- #if NET9_ 0
5+ #if NET9_ 0 && ! FABLE _ COMPILER
66 Exception | null
77 #else
88 Exception
99 #endif
1010
1111type IDisposableNull =
12- #if NET9_ 0
12+ #if NET9_ 0 && ! FABLE _ COMPILER
1313 IDisposable | null
1414 #else
1515 IDisposable
1616 #endif
1717
1818type IAsyncDisposableNull =
19- #if NET9_ 0
19+ #if NET9_ 0 && ! FABLE _ COMPILER
2020 IAsyncDisposable | null
2121 #else
2222 IAsyncDisposable
Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ module TestHelpers =
1313 }
1414
1515type MemoryStreamNull =
16- #if NET9_ 0
16+ #if NET9_ 0 && ! FABLE _ COMPILER
1717 System.IO.MemoryStream | null
1818 #else
1919 System.IO.MemoryStream
2020 #endif
2121
2222type UriNull =
23- #if NET9_ 0
23+ #if NET9_ 0 && ! FABLE _ COMPILER
2424 System.Uri | null
2525 #else
2626 System.Uri
You can’t perform that action at this time.
0 commit comments