Skip to content

Commit

Permalink
add final newline
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshLove-msft committed Jan 28, 2025
1 parent d2b9050 commit 8a883c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/http-client-csharp/eng/scripts/Generate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -185,5 +185,5 @@ if ($null -eq $filter) {
# Write the launch settings to the launchSettings.json file
$launchSettingsPath = Join-Path $solutionDir "Microsoft.Generator.CSharp" "src" "Properties" "launchSettings.json"
# Write the settings to JSON and normalize line endings to Unix style (LF)
$sortedLaunchSettings | ConvertTo-Json | ForEach-Object { $_ -replace "`r`n", "`n" } | Set-Content -NoNewLine $launchSettingsPath
$sortedLaunchSettings | ConvertTo-Json | ForEach-Object { ($_ -replace "`r`n", "`n") + "`n" } | Set-Content -NoNewLine $launchSettingsPath
}

0 comments on commit 8a883c7

Please sign in to comment.