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
# When enabling nullability globally withing a csproj file, you could get a lot of erros. | |
# This adds #nullable disable to all files so you may manually fix them. | |
# Just do a global search for '#nullable disable' in your IDE, remove the line and fix warnings and errors (EF core). | |
# TODO BUG this could change the file encoding of the file, UTF80 -> win1252 in my case. | |
[string] $directoryPath = ... | |
[switch] $dryRun = $true; | |
# Ensure the directory exists |