-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FileStreamStrategies refactor (#49750)
* move all strategy-related types to Strategies subfolder and namespace * make FileStreamHelpers a partial class, move some cross-platform helper methods there * rename config switch * address code review feedback
- Loading branch information
1 parent
a4c89d6
commit 5da6ba3
Showing
20 changed files
with
240 additions
and
130 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
src/libraries/System.IO.FileSystem/tests/LegacyTests/runtimeconfig.template.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"configProperties": { | ||
"System.IO.UseLegacyFileStream": true | ||
"System.IO.UseNet5CompatFileStream": false | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
src/libraries/System.IO/tests/LegacyTests/runtimeconfig.template.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"configProperties": { | ||
"System.IO.UseLegacyFileStream": true | ||
"System.IO.UseNet5CompatFileStream": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.