We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c27a81f commit 19294a6Copy full SHA for 19294a6
1 file changed
test/Import-File-Tests.ps1
@@ -66,7 +66,7 @@ Describe 'Style constraints for non-binary project files' {
66
It 'file newlines are CRLF' -Skip:$(-not $files_exist) {
67
$badFiles = @(
68
foreach ($file in $files) {
69
- $content = Get-Content -Raw $file.FullName
+ $content = [System.IO.File]::ReadAllText($file.FullName)
70
if (!$content) {
71
throw "File contents are null: $($file.FullName)"
72
}
0 commit comments